First part of onap rename
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / openecomp / appc / domainmodel / lcm / RequestContext.java
index 2e6f4fc..12ad5ae 100644 (file)
@@ -1,10 +1,11 @@
 /*-
  * ============LICENSE_START=======================================================
- * APPC
+ * ONAP : APPC
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright (C) 2017 Amdocs
  * ================================================================================
+ * Copyright (C) 2017 Amdocs
+ * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * ============LICENSE_END=========================================================
+ * 
  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
  */
 
-package org.openecomp.appc.domainmodel.lcm;
+package org.onap.appc.domainmodel.lcm;
 
 import java.util.HashMap;
 import java.util.Map;
@@ -31,6 +33,7 @@ public class RequestContext {
     private CommonHeader commonHeader;
     private ActionIdentifiers actionIdentifiers;
     private VNFOperation action;
+    private ActionLevel actionLevel;
     private String payload;
     private Map<String, String> additionalContext;
 
@@ -81,12 +84,21 @@ public class RequestContext {
         this.additionalContext.put(key, value);
     }
 
+    public ActionLevel getActionLevel() {
+        return actionLevel;
+    }
+
+    public void setActionLevel(ActionLevel actionLevel) {
+        this.actionLevel = actionLevel;
+    }
+
     @Override
     public String toString() {
         return "RequestContext{" +
                 "commonHeader=" + commonHeader +
                 ", actionIdentifiers=" + actionIdentifiers +
                 ", action=" + action +
+                ", actionLevel = " + actionLevel +
                 ", payload='" + payload + '\'' +
                 ", additionalContext=" + additionalContext +
                 '}';