summaryrefslogtreecommitdiffstats
path: root/PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java
diff options
context:
space:
mode:
authorwaqas.ikram <waqas.ikram@ericsson.com>2018-02-20 15:44:50 +0000
committerwaqas.ikram <waqas.ikram@ericsson.com>2018-02-20 16:40:08 +0000
commit5450bdbfb94fb5217617da6c41971fd26f7e81b5 (patch)
treece2229464356c633588edcb8a1988f46a6bf5757 /PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java
parenta9710cb3b80c73c98d257c676ba6ecf9e30ef758 (diff)
JUnit test for policy/engine PolicyEngineAPI
Change-Id: I31991245bb5cc877722f7ce14530222a102d6472 Issue-ID: POLICY-606 Signed-off-by: waqas.ikram <waqas.ikram@ericsson.com>
Diffstat (limited to 'PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java')
-rw-r--r--PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java22
1 files changed, 16 insertions, 6 deletions
diff --git a/PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java b/PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java
index 050f36bf4..79c6196e6 100644
--- a/PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java
+++ b/PolicyEngineAPI/src/main/java/org/onap/policy/models/APIDictionaryResponse.java
@@ -21,33 +21,43 @@ package org.onap.policy.models;
public class APIDictionaryResponse {
private Object dictionaryData;
+
private Object dictionaryJson;
+
private int responseCode;
+
private String responseMessage;
+
public Object getDictionaryData() {
return dictionaryData;
}
- public void setDictionaryData(Object dictionaryData) {
+
+ public void setDictionaryData(final Object dictionaryData) {
this.dictionaryData = dictionaryData;
}
+
public Object getDictionaryJson() {
return dictionaryJson;
}
- public void setDictionaryJson(Object dictionaryJson) {
+
+ public void setDictionaryJson(final Object dictionaryJson) {
this.dictionaryJson = dictionaryJson;
}
+
public int getResponseCode() {
return responseCode;
}
- public void setResponseCode(int responseCode) {
+
+ public void setResponseCode(final int responseCode) {
this.responseCode = responseCode;
}
+
public String getResponseMessage() {
return responseMessage;
}
- public void setResponseMessage(String responseMessage) {
+
+ public void setResponseMessage(final String responseMessage) {
this.responseMessage = responseMessage;
}
-
-
+
}