2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.appc.domainmodel.lcm;
 
  27 import java.util.HashMap;
 
  31 public class RequestContext {
 
  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;
 
  40     public CommonHeader getCommonHeader() {
 
  44     public void setCommonHeader(CommonHeader commonHeader) {
 
  45         this.commonHeader = commonHeader;
 
  48     public ActionIdentifiers getActionIdentifiers() {
 
  49         return actionIdentifiers;
 
  52     public void setActionIdentifiers(ActionIdentifiers actionIdentifiers) {
 
  53         this.actionIdentifiers = actionIdentifiers;
 
  56     public VNFOperation getAction() {
 
  60     public void setAction(VNFOperation action) {
 
  64     public String getPayload() {
 
  68     public void setPayload(String payload) {
 
  69         this.payload = payload;
 
  72     public Map<String, String> getAdditionalContext() {
 
  73         return additionalContext;
 
  76     public void setAdditionalContext(Map<String, String> additionalContext) {
 
  77         this.additionalContext = additionalContext;
 
  80     public void addKeyValueToAdditionalContext(String key, String value ){
 
  81         if (this.additionalContext == null) {
 
  82             this.additionalContext = new HashMap<>();
 
  84         this.additionalContext.put(key, value);
 
  87     public ActionLevel getActionLevel() {
 
  91     public void setActionLevel(ActionLevel actionLevel) {
 
  92         this.actionLevel = actionLevel;
 
  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 +