[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / api / DictionaryParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
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.onap.policy.api;
22
23 import java.util.UUID;
24
25 public class DictionaryParameters {
26         
27         private DictionaryType dictionaryType;
28         private String dictionary;
29         private String dictionaryJson;
30         private UUID requestID;
31         
32         
33         /**
34          * @return the dictionaryType
35          */
36         public DictionaryType getDictionaryType() {
37                 return dictionaryType;
38         }
39         /**
40          * @param dictionaryType the dictionaryType to set
41          */
42         public void setDictionaryType(DictionaryType dictionaryType) {
43                 this.dictionaryType = dictionaryType;
44         }
45         /**
46          * @return the dictionary
47          */
48         public String getDictionary() {
49                 return dictionary;
50         }
51         /**
52          * @param dictionary the dictionary to set
53          */
54         public void setDictionary(String dictionary) {
55                 this.dictionary = dictionary;
56         }
57         /**
58          * @return the dictionaryFields
59          */
60         public String getDictionaryJson() {
61                 return dictionaryJson;
62         }
63         /**
64          * @param dictionaryFields the dictionaryFields to set
65          */
66         public void setDictionaryJson(String dictionaryJson) {
67                 this.dictionaryJson = dictionaryJson;
68         }
69         /**
70          * @return the requestID
71          */
72         public UUID getRequestID() {
73                 return requestID;
74         }
75         /**
76          * @param requestID the requestID to set
77          */
78         public void setRequestID(UUID requestID) {
79                 this.requestID = requestID;
80         }
81
82 }