1 /* $Id: ProtocolMode.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 import java.rmi.Remote ;4 import java.rmi.RemoteException ;5 6 public interface ProtocolMode extends Remote {7 public static final int pm_none = 0; /* for interface protocols */8 public static final int pm_in = 1; /* ? = incoming call */9 public static final int pm_out = 2; /* ! = outgoing call */10 public int value() throws RemoteException ;11 }12