home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / rmi / transport / TransportConstants.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  755 b   |  19 lines

  1. package sun.rmi.transport;
  2.  
  3. public class TransportConstants {
  4.    public static final int Magic = 1246907721;
  5.    public static final short Version = 2;
  6.    public static final byte StreamProtocol = 75;
  7.    public static final byte SingleOpProtocol = 76;
  8.    public static final byte MultiplexProtocol = 77;
  9.    public static final byte ProtocolAck = 78;
  10.    public static final byte ProtocolNack = 79;
  11.    public static final byte Call = 80;
  12.    public static final byte Return = 81;
  13.    public static final byte Ping = 82;
  14.    public static final byte PingAck = 83;
  15.    public static final byte DGCAck = 84;
  16.    public static final byte NormalReturn = 1;
  17.    public static final byte ExceptionalReturn = 2;
  18. }
  19.