1 21 22 package com.rift.coad.daemon.messageservice; 24 25 import java.rmi.Remote ; 27 import java.rmi.RemoteException ; 28 29 35 public interface MessageProducer extends Remote { 36 37 40 public final static String JNDI_URL = "message/MessageProducer"; 41 42 43 52 public Producer createProducer(String from) throws RemoteException , 53 MessageServiceException; 54 55 } 56 | Popular Tags |