Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / webapp / app / policyApp / service / Dictionary / SafePolicyService.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ECOMP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  */
23 app.factory('SafePolicyService', function ($http, $q) {
24     return {
25
26         getRiskTypeDictionaryData : function(url){
27                         console.log("url on the service js: " + url);
28                         var url = url+'/ecomp/get_RiskTypeData';
29             return $http.get(url)
30                 .then(function(response) {
31                     if (typeof response.data === 'object') {
32                         return response.data;
33                     } else {
34                         return $q.reject(response.data);
35                     }
36
37                 }, function(response) {
38                     // something went wrong
39                     return $q.reject(response.data);
40                 });
41         },    
42             getRiskTypeDictionaryDataByName : function(url){
43                         console.log("url on the service js: " + url);
44                         var url = url+'/ecomp/get_RiskTypeDataByName';
45                 return $http.get(url)
46                     .then(function(response) {
47                         if (typeof response.data === 'object') {
48                             return response.data;
49                         } else {
50                             return $q.reject(response.data);
51                         }
52         
53                     }, function(response) {
54                         // something went wrong
55                         return $q.reject(response.data);
56                     });
57             },
58
59                 getSafePolicyWarningDictionaryData : function(url){
60                         console.log("url on the service js: " + url);
61                         var url = url+'/ecomp/get_SafePolicyWarningData';
62                 return $http.get(url)
63                     .then(function(response) {
64                         if (typeof response.data === 'object') {
65                             return response.data;
66                         } else {
67                             return $q.reject(response.data);
68                         }
69         
70                     }, function(response) {
71                         // something went wrong
72                         return $q.reject(response.data);
73                     });
74             },
75             getSafePolicyWarningDictionaryDataByName : function(url){
76                         console.log("url on the service js: " + url);
77                         var url = url+'/ecomp/get_SafePolicyWarningDataByName';
78                 return $http.get(url)
79                     .then(function(response) {
80                         if (typeof response.data === 'object') {
81                             return response.data;
82                         } else {
83                             return $q.reject(response.data);
84                         }
85         
86                     }, function(response) {
87                         // something went wrong
88                         return $q.reject(response.data);
89                     });
90             }
91     };
92 });