The BP Server provides default implementation of the Sender interface using JMS. All sender classes should implement the Sender interface. EventReader then invokes publish(CommonEvent) method on each sender class specified in the configuration file.
import com.savvion.sbm.util.eventreader.Sender;
public interface Sender {
public void publish(CommonEvent evt) throws Exception;
}