12ad5ae954680170fd7d5b1bb9d80a5c06d6fa90
[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.onap.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 ActionLevel actionLevel;
37     private String payload;
38     private Map<String, String> additionalContext;
39
40     public CommonHeader getCommonHeader() {
41         return commonHeader;
42     }
43
44     public void setCommonHeader(CommonHeader commonHeader) {
45         this.commonHeader = commonHeader;
46     }
47
48     public ActionIdentifiers getActionIdentifiers() {
49         return actionIdentifiers;
50     }
51
52     public void setActionIdentifiers(ActionIdentifiers actionIdentifiers) {
53         this.actionIdentifiers = actionIdentifiers;
54     }
55
56     public VNFOperation getAction() {
57         return action;
58     }
59
60     public void setAction(VNFOperation action) {
61         this.action = action;
62     }
63
64     public String getPayload() {
65         return payload;
66     }
67
68     public void setPayload(String payload) {
69         this.payload = payload;
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     public ActionLevel getActionLevel() {
88         return actionLevel;
89     }
90
91     public void setActionLevel(ActionLevel actionLevel) {
92         this.actionLevel = actionLevel;
93     }
94
95     @Override
96     public String toString() {
97         return "RequestContext{" +
98                 "commonHeader=" + commonHeader +
99                 ", actionIdentifiers=" + actionIdentifiers +
100                 ", action=" + action +
101                 ", actionLevel = " + actionLevel +
102                 ", payload='" + payload + '\'' +
103                 ", additionalContext=" + additionalContext +
104                 '}';
105     }
106 }