Fix dg-common bundle error
[appc.git] / appc-service-communicator / appc-service-communicator-bundle / src / main / java / org / onap / appc / srvcomm / messaging / event / EventSenderInterface.java
1 package org.onap.appc.srvcomm.messaging.event;
2
3 import java.util.Map;
4
5 import org.onap.appc.exceptions.APPCException;
6 import org.onap.appc.srvcomm.messaging.MessageDestination;
7 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
8 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
9
10 public interface EventSenderInterface extends SvcLogicJavaPlugin {
11     boolean sendEvent(MessageDestination destination, EventMessage msg);
12     boolean sendEvent(MessageDestination destination, EventMessage msg,String eventTopicName);
13     boolean sendEvent(MessageDestination destination, Map<String, String> params, SvcLogicContext ctx) throws APPCException;
14 }