[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / api / ConfigRequestParameters.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;
@@ -31,7 +31,7 @@ import java.util.UUID;
  */
 public class ConfigRequestParameters {
        private String policyName;
-       private String eCOMPComponentName;
+       private String onapComponentName;
        private String configName;
        private Map<String,String> configAttributes;
        private UUID requestID;
@@ -47,12 +47,12 @@ public class ConfigRequestParameters {
        }
        
        /**
-        * Sets the ECOMP Component Name of the Config policy which needs to be retrieved. 
+        * Sets the ONAP Component Name of the Config policy which needs to be retrieved. 
         * 
-        * @param eCOMPComponentName the <code>String</code> format of the eCOMPComponentName whose configuration is required.
+        * @param onapComponentName the <code>String</code> format of the onapComponentName whose configuration is required.
         */
-       public void setEcompName(String eCOMPComponentName){
-               this.eCOMPComponentName = eCOMPComponentName;
+       public void setOnapName(String onapComponentName){
+               this.onapComponentName = onapComponentName;
        }
        
        /**
@@ -74,9 +74,9 @@ public class ConfigRequestParameters {
        }
        
        /**
-        * Sets the Request ID of the ECOMP request. 
+        * Sets the Request ID of the ONAP request. 
         * 
-        * @param requestID unique <code>UUID</code> requestID which will be passed throughout the ECOMP components to correlate logging messages.
+        * @param requestID unique <code>UUID</code> requestID which will be passed throughout the ONAP components to correlate logging messages.
         */
        public void setRequestID(UUID requestID){
                this.requestID = requestID;
@@ -92,12 +92,12 @@ public class ConfigRequestParameters {
        }
        
        /**
-        * Gets the ECOMP Component Name of the Request Parameters. 
+        * Gets the ONAP Component Name of the Request Parameters. 
         * 
-        * @return <code>String</code> format of the ECOMP Component Name. 
+        * @return <code>String</code> format of the ONAP Component Name. 
         */
-       public String getEcompName(){
-               return eCOMPComponentName;
+       public String getOnapName(){
+               return onapComponentName;
        }
        
        /**