Listing 8: The set of business methods exposed by the enterprise bean in an interface

//  Elided package and import statements.

public interface LiaisonInterface
    extends Remote
{
    public String forward( String obj ) throws RemoteException;
}

— End of Listing —