/protocols/ss7/m3ua/api/src/main/java/org/mobicents/protocols/ss7/m3ua/parameter/Parameter.java

http://mobicents.googlecode.com/ · Java · 57 lines · 28 code · 3 blank · 26 comment · 0 complexity · 9d0c7229b6cde88921a7b422803f67a8 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.mobicents.protocols.ss7.m3ua.parameter;
  23. /**
  24. * Defines list of valid parameters.
  25. *
  26. * @author kulikov
  27. */
  28. public interface Parameter {
  29. public final static short INFO_String = 0x0004;
  30. public final static short Routing_Context = 0x0006;
  31. public final static short Diagnostic_Information = 0x0007;
  32. public final static short Heartbeat_Data = 0x0009;
  33. public final static short Traffic_Mode_Type = 0x000b;
  34. public final static short Error_Code = 0x000c;
  35. public final static short Status = 0x000d;
  36. public final static short ASP_Identifier = 0x0011;
  37. public final static short Affected_Point_Code = 0x0012;
  38. public final static short Correlation_ID = 0x0013;
  39. public final static short Network_Appearance = 0x0200;
  40. public final static short User_Cause = 0x0204;
  41. public final static short Congestion_Indications = 0x0205;
  42. public final static short Concerned_Destination = 0x0206;
  43. public final static short Routing_Key = 0x0207;
  44. public final static short Registration_Result = 0x0208;
  45. public final static short Deregistration_Result = 0x0209;
  46. public final static short Local_Routing_Key_Identifier = 0x020a;
  47. public final static short Destination_Point_Code = 0x020b;
  48. public final static short Service_Indicators = 0x020c;
  49. public final static short Originating_Point_Code_List = 0x020e;
  50. public final static short Circuit_Range = 0x020f;
  51. public final static short Protocol_Data = 0x0210;
  52. public final static short Registration_Status = 0x0212;
  53. public final static short Deregistration_Status = 0x0213;
  54. }