Applying license changes to all files
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / openecomp / appc / domainmodel / lcm / RequestContext.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.openecomp.appc.domainmodel.lcm;
26
27 import java.util.HashMap;
28 import java.util.Map;
29
30
31 public class RequestContext {
32
33     private CommonHeader commonHeader;
34     private ActionIdentifiers actionIdentifiers;
35     private VNFOperation action;
36     private String payload;
37     private Map<String, String> additionalContext;
38
39     public CommonHeader getCommonHeader() {
40         return commonHeader;
41     }
42
43     public void setCommonHeader(CommonHeader commonHeader) {
44         this.commonHeader = commonHeader;
45     }
46
47     public ActionIdentifiers getActionIdentifiers() {
48         return actionIdentifiers;
49     }
50
51     public void setActionIdentifiers(ActionIdentifiers actionIdentifiers) {
52         this.actionIdentifiers = actionIdentifiers;
53     }
54
55     public VNFOperation getAction() {
56         return action;
57     }
58
59     public void setAction(VNFOperation action) {
60         this.action = action;
61     }
62
63     public String getPayload() {
64         return payload;
65     }
66
67     public void setPayload(String payload) {
68         this.payload = payload;
69     }
70
71     public Map<String, String> getAdditionalContext() {
72         return additionalContext;
73     }
74
75     public void setAdditionalContext(Map<String, String> additionalContext) {
76         this.additionalContext = additionalContext;
77     }
78
79     public void addKeyValueToAdditionalContext(String key, String value ){
80         if (this.additionalContext == null) {
81             this.additionalContext = new HashMap<>();
82         }
83         this.additionalContext.put(key, value);
84     }
85
86     @Override
87     public String toString() {
88         return "RequestContext{" +
89                 "commonHeader=" + commonHeader +
90                 ", actionIdentifiers=" + actionIdentifiers +
91                 ", action=" + action +
92                 ", payload='" + payload + '\'' +
93                 ", additionalContext=" + additionalContext +
94                 '}';
95     }
96 }