01f6738947cd8c4aceb89994e26a66405ca7b648
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / client / policy / entities / PolicyServiceType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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 package org.openecomp.mso.client.policy.entities;
22
23 public enum PolicyServiceType {
24         GET_CONFIG("getConfig"),
25         SEND_EVENT("sendEvent"),
26         PUSH_POLICY("pushPolicy"),
27         CREATE_POLICY("createPolicy"),
28         UPDATE_POLICY("updatePolicy"),
29         GET_DECISION("getDecision"),
30         GET_METRICS("getMetrics"),
31         DELETE_POLICY("deletePolicy"),
32         LIST_CONFIG("listConfig"),
33         CREATE_DICTIONARY_ITEM("createDictionaryItem"),
34         UPDATE_DICTIONARY_ITEM("updateDictionaryItem"),
35         GET_DICTIONARY_ITEMS("getDictionaryItems");
36         
37         private final String name;
38         
39         PolicyServiceType(String name) {
40                 this.name = name;
41         }
42         
43         @Override
44         public String toString() {
45                 return name;
46         }
47         
48 }