/protocols/jain-megaco/megaco-api/src/main/java/javax/megaco/pkg/PkgConsts.java
http://mobicents.googlecode.com/ · Java · 70 lines · 16 code · 1 blank · 53 comment · 0 complexity · 870e73d2519186a104b916562251b65a MD5 · raw file
- package javax.megaco.pkg;
- /**
- * Constants used in package javax.megaco.pkg to define the megaco packages.
- *
- *
- */
- public final class PkgConsts {
- /**
- * Identifies generic MEGACO Package. Its value shall be set equal to 1.
- */
- public static final int GENERIC_PACKAGE = 1;
- /**
- * Identifies base root MEGACO Package. Its value shall be set equal to 2.
- */
- public static final int BASE_ROOT_PACKAGE = 2;
- /**
- * Identifies tone generation MEGACO Package. Its value shall be set equal
- * to 3.
- */
- public static final int TONE_GEN_PACKAGE = 3;
- /**
- * Identifies tone detection MEGACO Package. Its value shall be set equal to
- * 4.
- */
- public static final int TONE_DET_PACKAGE = 4;
- /**
- * Identifies basic DTMF generation MEGACO Package. Its value shall be set
- * equal to 5.
- */
- public static final int BASIC_DTMF_GEN_PACKAGE = 5;
- /**
- * Identifies DTMF detection MEGACO Package. Its value shall be set equal to
- * 6.
- */
- public static final int DTMF_DET_PACKAGE = 6;
- /**
- * Identifies call progress tone generation MEGACO Package. Its value shall
- * be set equal to 7.
- */
- public static final int CALL_PROG_TONE_GEN_PACKAGE = 7;
- /**
- * Identifies call progress tone detection MEGACO Package. Its value shall
- * be set equal to 8.
- */
- public static final int CALL_PROG_TONE_DET_PACKAGE = 8;
- /**
- * Identifies analog line supervision MEGACO Package. Its value shall be set
- * equal to 9.
- */
- public static final int ANALOG_LINE_PACKAGE = 9;
- /**
- * Identifies basic continuity MEGACO Package. Its value shall be set equal
- * to 10.
- */
- public static final int CONTINUITY_PACKAGE = 10;
- /**
- * Identifies network MEGACO Package. Its value shall be set equal to 11.
- */
- public static final int NETWORK_PACKAGE = 11;
- /**
- * Identifies RTP MEGACO Package. Its value shall be set equal to 12.
- */
- public static final int RTP_PACKAGE = 12;
- /**
- * Identifies TDM Circuit MEGACO Package. Its value shall be set equal to
- * 13.
- */
- public static final int TDM_CKT_PACKAGE = 13;
- }