Updating licenses in all files
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / openecomp / appc / domainmodel / lcm / ResponseContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.domainmodel.lcm;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28
29 public class ResponseContext {
30     private CommonHeader commonHeader;
31     private Status status;
32     private String payload;
33     private Map<String, String> additionalContext;
34
35     public CommonHeader getCommonHeader() {
36         return commonHeader;
37     }
38
39     public void setCommonHeader(CommonHeader commonHeader) {
40         this.commonHeader = commonHeader;
41     }
42
43     public Status getStatus() {
44         return status;
45     }
46
47     public void setStatus(Status status) {
48         this.status = status;
49     }
50
51     public String getPayload() {
52         return payload;
53     }
54
55     public void setPayload(String payload) {
56         this.payload = payload;
57     }
58
59     public Map<String, String> getAdditionalContext() {
60         return additionalContext;
61     }
62
63     public void setAdditionalContext(Map<String, String> additionalContext) {
64         this.additionalContext = additionalContext;
65     }
66
67     public void addKeyValueToAdditionalContext(String key, String value ){
68         if (this.additionalContext == null) {
69             this.additionalContext = new HashMap<>();
70         }
71         this.additionalContext.put(key, value);
72     }
73
74     @Override
75     public String toString() {
76         return "ResponseContext{" +
77                 "commonHeader=" + commonHeader +
78                 ", status=" + status +
79                 ", payload='" + payload + '\'' +
80                 ", additionalContext=" + additionalContext +
81                 '}';
82     }
83
84 }