/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

  1. package javax.megaco.pkg;
  2. /**
  3. * Constants used in package javax.megaco.pkg to define the megaco packages.
  4. *
  5. *
  6. */
  7. public final class PkgConsts {
  8. /**
  9. * Identifies generic MEGACO Package. Its value shall be set equal to 1.
  10. */
  11. public static final int GENERIC_PACKAGE = 1;
  12. /**
  13. * Identifies base root MEGACO Package. Its value shall be set equal to 2.
  14. */
  15. public static final int BASE_ROOT_PACKAGE = 2;
  16. /**
  17. * Identifies tone generation MEGACO Package. Its value shall be set equal
  18. * to 3.
  19. */
  20. public static final int TONE_GEN_PACKAGE = 3;
  21. /**
  22. * Identifies tone detection MEGACO Package. Its value shall be set equal to
  23. * 4.
  24. */
  25. public static final int TONE_DET_PACKAGE = 4;
  26. /**
  27. * Identifies basic DTMF generation MEGACO Package. Its value shall be set
  28. * equal to 5.
  29. */
  30. public static final int BASIC_DTMF_GEN_PACKAGE = 5;
  31. /**
  32. * Identifies DTMF detection MEGACO Package. Its value shall be set equal to
  33. * 6.
  34. */
  35. public static final int DTMF_DET_PACKAGE = 6;
  36. /**
  37. * Identifies call progress tone generation MEGACO Package. Its value shall
  38. * be set equal to 7.
  39. */
  40. public static final int CALL_PROG_TONE_GEN_PACKAGE = 7;
  41. /**
  42. * Identifies call progress tone detection MEGACO Package. Its value shall
  43. * be set equal to 8.
  44. */
  45. public static final int CALL_PROG_TONE_DET_PACKAGE = 8;
  46. /**
  47. * Identifies analog line supervision MEGACO Package. Its value shall be set
  48. * equal to 9.
  49. */
  50. public static final int ANALOG_LINE_PACKAGE = 9;
  51. /**
  52. * Identifies basic continuity MEGACO Package. Its value shall be set equal
  53. * to 10.
  54. */
  55. public static final int CONTINUITY_PACKAGE = 10;
  56. /**
  57. * Identifies network MEGACO Package. Its value shall be set equal to 11.
  58. */
  59. public static final int NETWORK_PACKAGE = 11;
  60. /**
  61. * Identifies RTP MEGACO Package. Its value shall be set equal to 12.
  62. */
  63. public static final int RTP_PACKAGE = 12;
  64. /**
  65. * Identifies TDM Circuit MEGACO Package. Its value shall be set equal to
  66. * 13.
  67. */
  68. public static final int TDM_CKT_PACKAGE = 13;
  69. }