/servers/jain-slee/resources/diameter-rf/events/src/main/java/net/java/slee/resource/diameter/rf/events/avp/MessageType.java

http://mobicents.googlecode.com/ · Java · 192 lines · 92 code · 70 blank · 30 comment · 0 complexity · 09e3e7e08e76f840c343cd5dcc1c434c 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 net.java.slee.resource.diameter.rf.events.avp;
  23. import java.io.Serializable;
  24. import java.io.StreamCorruptedException;
  25. import net.java.slee.resource.diameter.base.events.avp.Enumerated;
  26. /**
  27. * Java class to represent the MessageType enumerated type.
  28. *
  29. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  30. * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a>
  31. */
  32. public class MessageType implements Enumerated, Serializable {
  33. private static final long serialVersionUID = 1L;
  34. public static final int _M_SEND_REQ = 1;
  35. public static final int _M_SEND_CONF = 2;
  36. public static final int _M_NOTIFICATION_IND = 3;
  37. public static final int _M_NOTIFYRESP_IND = 4;
  38. public static final int _M_RETRIEVE_CONF = 5;
  39. public static final int _M_ACKNOWLEDGE_IND = 6;
  40. public static final int _M_DELIVERY_IND = 7;
  41. public static final int _M_READ_REC_IND = 8;
  42. public static final int _M_READ_ORIG_IND = 9;
  43. public static final int _M_FORWARD_CONF = 11;
  44. public static final int _M_MBOX_STORE_CONF = 12;
  45. public static final int _M_MBOX_VIEW_CONF = 13;
  46. public static final int _M_MBOX_UPLOAD_CONF = 14;
  47. public static final int _M_MBOX_DELETE_CONF = 15;
  48. public static final int _M_FORWARD_REQ = 20;
  49. public static final MessageType M_SEND_REQ = new MessageType(_M_SEND_REQ);
  50. public static final MessageType M_SEND_CONF = new MessageType(_M_SEND_CONF);
  51. public static final MessageType M_NOTIFICATION_IND = new MessageType(_M_NOTIFICATION_IND);
  52. public static final MessageType M_NOTIFYRESP_IND = new MessageType(_M_NOTIFYRESP_IND);
  53. public static final MessageType M_RETRIEVE_CONF = new MessageType(_M_RETRIEVE_CONF);
  54. public static final MessageType M_ACKNOWLEDGE_IND = new MessageType(_M_ACKNOWLEDGE_IND);
  55. public static final MessageType M_DELIVERY_IND = new MessageType(_M_DELIVERY_IND);
  56. public static final MessageType M_READ_REC_IND = new MessageType(_M_READ_REC_IND);
  57. public static final MessageType M_READ_ORIG_IND = new MessageType(_M_READ_ORIG_IND);
  58. public static final MessageType M_FORWARD_CONF = new MessageType(_M_FORWARD_CONF);
  59. public static final MessageType M_MBOX_STORE_CONF = new MessageType(_M_MBOX_STORE_CONF);
  60. public static final MessageType M_MBOX_VIEW_CONF = new MessageType(_M_MBOX_VIEW_CONF);
  61. public static final MessageType M_MBOX_UPLOAD_CONF = new MessageType(_M_MBOX_UPLOAD_CONF);
  62. public static final MessageType M_MBOX_DELETE_CONF = new MessageType(_M_MBOX_DELETE_CONF);
  63. public static final MessageType M_FORWARD_REQ = new MessageType(_M_FORWARD_REQ);
  64. private MessageType(int v) {
  65. value = v;
  66. }
  67. /**
  68. * Return the value of this instance of this enumerated type.
  69. */
  70. public static MessageType fromInt(int type) {
  71. switch(type) {
  72. case _M_ACKNOWLEDGE_IND: return M_ACKNOWLEDGE_IND;
  73. case _M_DELIVERY_IND: return M_DELIVERY_IND;
  74. case _M_FORWARD_CONF: return M_FORWARD_REQ;
  75. case _M_FORWARD_REQ: return M_FORWARD_REQ;
  76. case _M_MBOX_DELETE_CONF: return M_MBOX_DELETE_CONF;
  77. case _M_MBOX_STORE_CONF: return M_MBOX_STORE_CONF;
  78. case _M_MBOX_UPLOAD_CONF: return M_MBOX_UPLOAD_CONF;
  79. case _M_MBOX_VIEW_CONF: return M_MBOX_VIEW_CONF;
  80. case _M_NOTIFICATION_IND: return M_NOTIFICATION_IND;
  81. case _M_NOTIFYRESP_IND: return M_NOTIFYRESP_IND;
  82. case _M_READ_ORIG_IND: return M_READ_ORIG_IND;
  83. case _M_READ_REC_IND: return M_READ_REC_IND;
  84. case _M_RETRIEVE_CONF: return M_RETRIEVE_CONF;
  85. case _M_SEND_CONF: return M_SEND_CONF;
  86. case _M_SEND_REQ: return M_SEND_REQ;
  87. default: throw new IllegalArgumentException("Invalid DisconnectCause value: " + type);
  88. }
  89. }
  90. public int getValue() {
  91. return value;
  92. }
  93. public String toString() {
  94. switch(value) {
  95. case _M_ACKNOWLEDGE_IND: return "M_ACKNOWLEDGE_IND";
  96. case _M_DELIVERY_IND: return "M_DELIVERY_IND";
  97. case _M_FORWARD_CONF: return "M_FORWARD_REQ";
  98. case _M_FORWARD_REQ: return "M_FORWARD_REQ";
  99. case _M_MBOX_DELETE_CONF: return "M_MBOX_DELETE_CONF";
  100. case _M_MBOX_STORE_CONF: return "M_MBOX_STORE_CONF";
  101. case _M_MBOX_UPLOAD_CONF: return "M_MBOX_UPLOAD_CONF";
  102. case _M_MBOX_VIEW_CONF: return "M_MBOX_VIEW_CONF";
  103. case _M_NOTIFICATION_IND: return "M_NOTIFICATION_IND";
  104. case _M_NOTIFYRESP_IND: return "M_NOTIFYRESP_IND";
  105. case _M_READ_ORIG_IND: return "M_READ_ORIG_IND";
  106. case _M_READ_REC_IND: return "M_READ_REC_IND";
  107. case _M_RETRIEVE_CONF: return "M_RETRIEVE_CONF";
  108. case _M_SEND_CONF: return "M_SEND_CONF";
  109. case _M_SEND_REQ: return "M_SEND_REQ";
  110. default: return "<Invalid Value>";
  111. }
  112. }
  113. private Object readResolve() throws StreamCorruptedException {
  114. try {
  115. return fromInt(value);
  116. }
  117. catch (IllegalArgumentException iae) {
  118. throw new StreamCorruptedException("Invalid internal state found: " + value);
  119. }
  120. }
  121. private int value = 0;
  122. }