[POLICY-122] Policy GUI Fixes
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / openecomp / policy / models / APIDictionaryResponse.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 package org.openecomp.policy.models;
21
22 public class APIDictionaryResponse {
23     private Object dictionaryData;
24     private Object dictionaryJson;
25     private int responseCode;
26     private String responseMessage;
27     public Object getDictionaryData() {
28         return dictionaryData;
29     }
30     public void setDictionaryData(Object dictionaryData) {
31         this.dictionaryData = dictionaryData;
32     }
33     public Object getDictionaryJson() {
34         return dictionaryJson;
35     }
36     public void setDictionaryJson(Object dictionaryJson) {
37         this.dictionaryJson = dictionaryJson;
38     }
39     public int getResponseCode() {
40         return responseCode;
41     }
42     public void setResponseCode(int responseCode) {
43         this.responseCode = responseCode;
44     }
45     public String getResponseMessage() {
46         return responseMessage;
47     }
48     public void setResponseMessage(String responseMessage) {
49         this.responseMessage = responseMessage;
50     }
51     
52     
53 }