[UI] Support UI partial control
[validation.git] / ui / src / main / webapp / app / AECBlueprintValidationUI / App.Services.js
diff --git a/ui/src/main/webapp/app/AECBlueprintValidationUI/App.Services.js b/ui/src/main/webapp/app/AECBlueprintValidationUI/App.Services.js
deleted file mode 100644 (file)
index 8fa4ce6..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *        http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-var services = angular.module('App.Services', [ 'App.Config' ]);
-
-services.factory('restAPISvc', [
-        '$http',
-        'appContext',
-        function($http, appContext) {
-            var svc = [];
-            svc.getRestAPI = function(path, cb) {
-                return $http({
-                    method : 'GET',
-                    url : appContext + path,
-                    headers : {
-                        'Content-Type' : "application/json",
-                        'Accept' : "application/json"
-                    }
-                }).then(
-                        function(response) {
-                            if (response.status == 200) {
-                                cb(response.data);
-                            } else {
-                                /* eslint-disable no-console */
-                                console.log("Get REST API error: "
-                                        + response.statusText);
-                                /* eslint-enable no-console */
-                                cb(null);
-                            }
-                        },
-                        function(error) {
-                            /* eslint-disable no-console */
-                            console.log("Get REST API error: "
-                                    + error.statusText);
-                            /* eslint-enable no-console */
-                            cb(null);
-                        });
-            };
-            svc.postRestAPI = function(path, json, cb) {
-                return $http({
-                    method : 'POST',
-                    url : appContext + path,
-                    headers : {
-                        'Content-Type' : "application/json",
-                        'Accept' : "application/json"
-                    },
-                    data : json
-                }).then(
-                        function(response) {
-                            if (response.status == 200
-                                    || response.status == 201) {
-                                cb(response.data);
-                            } else {
-                                /* eslint-disable no-console */
-                                console.log("Post REST API error: "
-                                        + response.statusText);
-                                /* eslint-enable no-console */
-                                cb(null);
-                            }
-                        },
-                        function(error) {
-                            /* eslint-disable no-console */
-                            console.log("Post REST API error: "
-                                    + error.statusText);
-                            /* eslint-enable no-console */
-                            cb(null);
-                        });
-            };
-            svc.deleteRestAPI = function(path, json) {
-                return $http({
-                    method : 'DELETE',
-                    url : appContext + path,
-                    headers : {
-                        'Content-Type' : "application/json",
-                        'Accept' : "application/json"
-                    },
-                    data : json
-                }).then(
-                        function(response) {
-                            if (response.status !== 200) {
-                                /* eslint-disable no-console */
-                                console.log("Delete REST API error: "
-                                        + response.statusText);
-                                /* eslint-enable no-console */
-                            }
-                        },
-                        function(error) {
-                            /* eslint-disable no-console */
-                            console.log("Delete REST API error: "
-                                    + error.statusText);
-                            /* eslint-enable no-console */
-                        });
-            };
-            return svc;
-        } ]);
\ No newline at end of file