[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / api / EventRequestParameters.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;
@@ -43,7 +43,7 @@ public class EventRequestParameters {
         * Constructor with Parameters
         * 
         * @param eventAttributes the <code>Map</code> of <code>String,String</code> format of the eventAttributes that contains the event 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 EventRequestParameters(Map<String,String> eventAttributes, UUID requestID){
                this.eventAttributes = eventAttributes;
@@ -69,18 +69,18 @@ public class EventRequestParameters {
        }
        
        /**
-        * Gets the ReqestID of Event Request Parameters which will be passed around ECOMP requests. 
+        * Gets the ReqestID of Event Request Parameters which will be passed around ONAP requests. 
         * 
-        * @return requestID unique request ID which will be passed throughout the ECOMP components to correlate logging messages.
+        * @return 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 Event Request Parameters which will be passed around ECOMP requests.
+        * Sets the ReqestID of Event 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;