JUnit test for policy/engine PolicyEngineAPI
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / 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.onap.policy.models;
21
22 public class APIDictionaryResponse {
23     private Object dictionaryData;
24
25     private Object dictionaryJson;
26
27     private int responseCode;
28
29     private String responseMessage;
30
31     public Object getDictionaryData() {
32         return dictionaryData;
33     }
34
35     public void setDictionaryData(final Object dictionaryData) {
36         this.dictionaryData = dictionaryData;
37     }
38
39     public Object getDictionaryJson() {
40         return dictionaryJson;
41     }
42
43     public void setDictionaryJson(final Object dictionaryJson) {
44         this.dictionaryJson = dictionaryJson;
45     }
46
47     public int getResponseCode() {
48         return responseCode;
49     }
50
51     public void setResponseCode(final int responseCode) {
52         this.responseCode = responseCode;
53     }
54
55     public String getResponseMessage() {
56         return responseMessage;
57     }
58
59     public void setResponseMessage(final String responseMessage) {
60         this.responseMessage = responseMessage;
61     }
62
63 }