4386f0d08c4bf5a34009e6cd0a63e7e08652991a
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / onap / appc / domainmodel / lcm / ResponseContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.domainmodel.lcm;
26
27 import java.util.HashMap;
28 import java.util.Map;
29
30
31 public class ResponseContext {
32     private CommonHeader commonHeader;
33     private Status status;
34     private Map<String, String> additionalContext;
35     /** Carries json String response payload */
36     private String payload;
37     /** Carries non-String response payload, such as List or Map of object */
38     private Object payloadObject;
39
40     public CommonHeader getCommonHeader() {
41         return commonHeader;
42     }
43
44     public void setCommonHeader(CommonHeader commonHeader) {
45         this.commonHeader = commonHeader;
46     }
47
48     public Status getStatus() {
49         return status;
50     }
51
52     public void setStatus(Status status) {
53         this.status = status;
54     }
55
56     public String getPayload() {
57         return payload;
58     }
59
60     public void setPayload(String payload) {
61         this.payload = payload;
62     }
63
64     public Object getPayloadObject() {
65         return payloadObject;
66     }
67
68     public void setPayloadObject(Object payloadObject) {
69         this.payloadObject = payloadObject;
70     }
71
72     public Map<String, String> getAdditionalContext() {
73         return additionalContext;
74     }
75
76     public void setAdditionalContext(Map<String, String> additionalContext) {
77         this.additionalContext = additionalContext;
78     }
79
80     public void addKeyValueToAdditionalContext(String key, String value ){
81         if (this.additionalContext == null) {
82             this.additionalContext = new HashMap<>();
83         }
84         this.additionalContext.put(key, value);
85     }
86
87     @Override
88     public String toString() {
89         return "ResponseContext{" +
90                 "commonHeader=" + commonHeader +
91                 ", status=" + status +
92                 ", payload='" + payload + '\'' +
93                 ", additionalContext=" + additionalContext +
94                 '}';
95     }
96
97 }