[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / api / DecisionRequestParameters.java
@@ -18,7 +18,7 @@
  * ============LICENSE_END=========================================================
  */
 
-package org.openecomp.policy.api;
+package org.onap.policy.api;
 
 import java.util.Map;
 import java.util.UUID;
@@ -30,7 +30,7 @@ import java.util.UUID;
  * @version 0.1
  */
 public class DecisionRequestParameters {
-       private String eCOMPComponentName;
+       private String onapComponentName;
        private Map<String,String> decisionAttributes;
        private UUID requestID;
        
@@ -43,31 +43,31 @@ public class DecisionRequestParameters {
        /**
         * Constructor with Parameters
         * 
-        * @param eCOMPComponentName the <code>String</code> format of the eCOMPComponentName whose Decision is required.
+        * @param onapComponentName the <code>String</code> format of the onapComponentName whose Decision is required.
         * @param decisionAttributes the <code>Map</code> of <code>String,String</code> format of the decisionAttributes that contain the ID and values.
-        * @param requestID unique request ID which will be passed throughout the ECOMP components to correlate logging messages.
+        * @param requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages.
         */
-       public DecisionRequestParameters(String eCOMPComponentName, Map<String,String> decisionAttributes, UUID requestID){
-               this.eCOMPComponentName = eCOMPComponentName;
+       public DecisionRequestParameters(String onapComponentName, Map<String,String> decisionAttributes, UUID requestID){
+               this.onapComponentName = onapComponentName;
                this.decisionAttributes = decisionAttributes;
                this.requestID = requestID;
        }
        
        /**
-        * Gets the ECOMPComponentName of the Decision Request Parameters. 
+        * Gets the ONAPComponentName of the Decision Request Parameters. 
         * 
-        * @return ECOMPComponentName the <code>String</code> format of the eCOMPComponentName of the Decision Request Parameters.
+        * @return ONAPComponentName the <code>String</code> format of the onapComponentName of the Decision Request Parameters.
         */
-       public String getECOMPComponentName() {
-               return eCOMPComponentName;
+       public String getONAPComponentName() {
+               return onapComponentName;
        }
        /**
-        * Sets the ECOMPComponentName of the Decision Request parameters.  
+        * Sets the ONAPComponentName of the Decision Request parameters.  
         * 
-        * @param eCOMPComponentName the <code>String</code> format of the eCOMPComponentName whose Decision is required.
+        * @param onapComponentName the <code>String</code> format of the onapComponentName whose Decision is required.
         */
-       public void setECOMPComponentName(String eCOMPComponentName) {
-               this.eCOMPComponentName = eCOMPComponentName;
+       public void setONAPComponentName(String onapComponentName) {
+               this.onapComponentName = onapComponentName;
        }
        /**
         * Gets the Decision Attributes from Decision Request Parameters. 
@@ -88,15 +88,15 @@ public class DecisionRequestParameters {
        /**
         * Gets the request ID of Decision Request Parameters. 
         * 
-        * @return the requestID unique request ID which will be passed throughout the ECOMP components to correlate logging messages.
+        * @return the requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages.
         */
        public UUID getRequestID() {
                return requestID;
        }
        /**
-        * Sets the ReqestID of Decision Request Parameters which will be passed around ECOMP requests.
+        * Sets the ReqestID of Decision Request Parameters which will be passed around ONAP requests.
         * 
-        * @param requestID unique request ID which will be passed throughout the ECOMP components to correlate logging messages.
+        * @param requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages.
         */
        public void setRequestID(UUID requestID) {
                this.requestID = requestID;