/protocols/ss7/isup/isup-impl/src/main/java/org/mobicents/protocols/ss7/isup/impl/message/UnblockingMessageImpl.java

http://mobicents.googlecode.com/ · Java · 130 lines · 39 code · 28 blank · 63 comment · 0 complexity · 8a12f29c6d6153b3fe951740efaafff0 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. /**
  23. * Start time:00:06:04 2009-09-07<br>
  24. * Project: mobicents-isup-stack<br>
  25. *
  26. * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski </a>
  27. */
  28. package org.mobicents.protocols.ss7.isup.impl.message;
  29. import java.util.Map;
  30. import java.util.Set;
  31. import org.mobicents.protocols.ss7.isup.ISUPParameterFactory;
  32. import org.mobicents.protocols.ss7.isup.ParameterException;
  33. import org.mobicents.protocols.ss7.isup.impl.message.parameter.MessageTypeImpl;
  34. import org.mobicents.protocols.ss7.isup.message.UnblockingMessage;
  35. import org.mobicents.protocols.ss7.isup.message.parameter.MessageType;
  36. /**
  37. * Start time:00:06:04 2009-09-07<br>
  38. * Project: mobicents-isup-stack<br>
  39. *
  40. * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski
  41. * </a>
  42. */
  43. public class UnblockingMessageImpl extends ISUPMessageImpl implements UnblockingMessage {
  44. public static final MessageTypeImpl _MESSAGE_TYPE = new MessageTypeImpl(MESSAGE_CODE);
  45. private static final int _MANDATORY_VAR_COUNT = 0;
  46. static final int _INDEX_F_MessageType = 0;
  47. UnblockingMessageImpl(Set<Integer> mandatoryCodes, Set<Integer> mandatoryVariableCodes, Set<Integer> optionalCodes, Map<Integer, Integer> mandatoryCode2Index,
  48. Map<Integer, Integer> mandatoryVariableCode2Index, Map<Integer, Integer> optionalCode2Index) {
  49. super( mandatoryCodes, mandatoryVariableCodes, optionalCodes, mandatoryCode2Index, mandatoryVariableCode2Index, optionalCode2Index);
  50. super.f_Parameters.put(_INDEX_F_MessageType, this.getMessageType());
  51. }
  52. /*
  53. * (non-Javadoc)
  54. *
  55. * @see
  56. * org.mobicents.protocols.ss7.isup.ISUPMessageImpl#decodeMandatoryVariableBody(byte
  57. * [], int)
  58. */
  59. protected void decodeMandatoryVariableBody(ISUPParameterFactory parameterFactory,byte[] parameterBody, int parameterIndex) throws ParameterException {
  60. throw new UnsupportedOperationException("This message does not support mandatory variable parameters.");
  61. }
  62. /*
  63. * (non-Javadoc)
  64. *
  65. * @see org.mobicents.protocols.ss7.isup.ISUPMessageImpl#decodeOptionalBody(byte[],
  66. * byte)
  67. */
  68. protected void decodeOptionalBody(ISUPParameterFactory parameterFactory,byte[] parameterBody, byte parameterCode) throws ParameterException {
  69. throw new UnsupportedOperationException("This message does not support optional parameters.");
  70. }
  71. protected int decodeMandatoryVariableParameters(ISUPParameterFactory parameterFactory,byte[] b, int index) throws ParameterException {
  72. throw new UnsupportedOperationException("This message does not support mandatory variable parameters.");
  73. }
  74. /*
  75. * (non-Javadoc)
  76. *
  77. * @see org.mobicents.protocols.ss7.isup.ISUPMessageImpl#getMessageType()
  78. */
  79. public MessageType getMessageType() {
  80. return this._MESSAGE_TYPE;
  81. }
  82. /*
  83. * (non-Javadoc)
  84. *
  85. * @seeorg.mobicents.protocols.ss7.isup.ISUPMessageImpl#
  86. * getNumberOfMandatoryVariableLengthParameters()
  87. */
  88. protected int getNumberOfMandatoryVariableLengthParameters() {
  89. return _MANDATORY_VAR_COUNT;
  90. }
  91. /*
  92. * (non-Javadoc)
  93. *
  94. * @see org.mobicents.protocols.ss7.isup.ISUPMessageImpl#hasAllMandatoryParameters()
  95. */
  96. public boolean hasAllMandatoryParameters() {
  97. return true;
  98. }
  99. protected boolean optionalPartIsPossible() {
  100. return false;
  101. }
  102. }