Remove cambria client dependency
[aai/router-core.git] / src / main / java / org / onap / aai / event / DMaaPEventBusComponent.java
@@ -27,22 +27,22 @@ import org.apache.camel.impl.UriEndpointComponent;
 import java.util.Map;
 
 /**
- * Represents the component that manages {@link EventBusEndpoint}.
+ * Represents the component that manages {@link DMaaPEventBusEndpoint}.
  */
-public class EventBusComponent extends UriEndpointComponent {
+public class DMaaPEventBusComponent extends UriEndpointComponent {
 
-  public EventBusComponent() {
-    super(EventBusEndpoint.class);
+  public DMaaPEventBusComponent() {
+    super(DMaaPEventBusEndpoint.class);
   }
 
-  public EventBusComponent(CamelContext context) {
-    super(context, EventBusEndpoint.class);
+  public DMaaPEventBusComponent(CamelContext context) {
+    super(context, DMaaPEventBusEndpoint.class);
   }
 
  @Override
   protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters)
       throws Exception {
-    Endpoint endpoint = new EventBusEndpoint(uri, this);
+    Endpoint endpoint = new DMaaPEventBusEndpoint(uri, this);
     setProperties(endpoint, parameters);
     return endpoint;
   }