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