KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonathan > apis > protocols > ProtocolIdentifiers


1 package org.objectweb.jonathan.apis.protocols;
2
3 /**
4  * Simply, a list of the protocol identifiers used in the exotic
5  * protocol graph thingy.
6  */

7 public interface ProtocolIdentifiers {
8     static final int GIOP = 0;
9     static final int TCPIP = 1;
10     static final int HTTP = 2;
11     static final int RTP = 3;
12     static final int MULTICASTIP = 4;
13     static final int MULTIPLEX = 5;
14 }
15
Popular Tags