/protocols/ss7/isup/isup-api/src/main/java/org/mobicents/protocols/ss7/isup/message/UnblockingAckMessage.java

http://mobicents.googlecode.com/ · Java · 70 lines · 4 code · 2 blank · 64 comment · 0 complexity · 910c224b98f0c7027f8765fdb68a9eed 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.isup.message;
  23. /**
  24. * Start time:09:54:07 2009-07-23<br>
  25. * Project: mobicents-isup-stack<br>
  26. * <TABLE id="Table22" style="FONT-SIZE: 9pt; WIDTH: 584px; HEIGHT: 72px; TEXT-ALIGN: center" cellSpacing="1" cellPadding="1" width="584" align="center" border="1">
  27. * <TR>
  28. * <TD style="FONT-WEIGHT: bold; WIDTH: 328px; COLOR: teal; HEIGHT: 28px; TEXT-ALIGN: center" align="center" colSpan="3">
  29. * <TABLE id="Table51" style="WIDTH: 575px; COLOR: navy; HEIGHT: 49px" cellSpacing="1" cellPadding="1" width="575" border="0">
  30. * <TR>
  31. * <TD style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: teal; HEIGHT: 28px; TEXT-ALIGN: center" colSpan="3">
  32. * Unblocking Acknowledgement (UBA)</TD>
  33. *
  34. * </TR>
  35. *
  36. * <TR>
  37. * <TD style="FONT-SIZE: 9pt; BORDER-BOTTOM: silver thin solid" colSpan="3">
  38. * Unblocking Acknowledgement (UBA) message sent in response to an unblocking
  39. * message indicating that the circuit has been unblocked.</TD>
  40. * </TR>
  41. *
  42. * </TABLE>
  43. * </TD>
  44. *
  45. * </TR>
  46. * <TR>
  47. * <TD style="FONT-WEIGHT: bold; WIDTH: 283px; HEIGHT: 30px; TEXT-ALIGN: center">
  48. * Parameter</TD>
  49. * <TD style="FONT-WEIGHT: bold; WIDTH: 145px; HEIGHT: 30px">Type</TD>
  50. * <TD style="FONT-WEIGHT: bold; HEIGHT: 30px">Length (octet)</TD>
  51. * </TR>
  52. * <TR>
  53. *
  54. * <TD style="WIDTH: 283px; TEXT-ALIGN: left">Message type</TD>
  55. * <TD style="WIDTH: 145px">F</TD>
  56. * <TD>1</TD>
  57. * </TR>
  58. * </TABLE>
  59. *
  60. * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski </a>
  61. */
  62. public interface UnblockingAckMessage extends ISUPMessage {
  63. /**
  64. * Unblocking Ack Message, Q.763 reference table 39 <br>
  65. * {@link UnblockingAckMessage}
  66. */
  67. public static final int MESSAGE_CODE = 0x16;
  68. }