/protocols/smpp/src/main/java/org/mobicents/protocols/smpp/message/DeliverSMResp.java

http://mobicents.googlecode.com/ · Java · 108 lines · 56 code · 18 blank · 34 comment · 2 complexity · 28e8971ef359743d58fadecd2d377a41 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.smpp.message;
  23. import java.io.IOException;
  24. import org.mobicents.protocols.smpp.util.PacketDecoder;
  25. import org.mobicents.protocols.smpp.util.PacketEncoder;
  26. import org.mobicents.protocols.smpp.version.SMPPVersion;
  27. /**
  28. * ESME response to a Deliver message request.
  29. *
  30. * @version $Id: DeliverSMResp.java 457 2009-01-15 17:37:42Z orank $
  31. */
  32. public class DeliverSMResp extends SMPPPacket {
  33. private static final long serialVersionUID = 2L;
  34. private String messageId;
  35. /**
  36. * Construct a new DeliverSMResp.
  37. */
  38. public DeliverSMResp() {
  39. super(CommandId.DELIVER_SM_RESP);
  40. }
  41. /**
  42. * Create a new DeliverSMResp packet in response to a DeliverSM. This
  43. * constructor will set the sequence number to it's expected value.
  44. * @param request The Request packet the response is to
  45. */
  46. public DeliverSMResp(SMPPPacket request) {
  47. super(request);
  48. }
  49. public String getMessageId() {
  50. return messageId;
  51. }
  52. public void setMessageId(String messageId) {
  53. this.messageId = messageId;
  54. }
  55. @Override
  56. public boolean equals(Object obj) {
  57. boolean equals = super.equals(obj);
  58. if (equals) {
  59. DeliverSMResp other = (DeliverSMResp) obj;
  60. equals |= safeCompare(messageId, other.messageId);
  61. }
  62. return equals;
  63. }
  64. @Override
  65. public int hashCode() {
  66. int hc = super.hashCode();
  67. hc += (messageId != null) ? messageId.hashCode() : 0;
  68. return hc;
  69. }
  70. @Override
  71. protected void toString(StringBuilder buffer) {
  72. buffer.append("messageId=").append(messageId);
  73. }
  74. @Override
  75. protected void validateMandatory(SMPPVersion smppVersion) {
  76. smppVersion.validateMessageId(messageId);
  77. }
  78. @Override
  79. protected void readMandatory(PacketDecoder decoder) {
  80. messageId = decoder.readCString();
  81. }
  82. @Override
  83. protected void writeMandatory(PacketEncoder encoder) throws IOException {
  84. encoder.writeCString(messageId);
  85. }
  86. @Override
  87. protected int getMandatorySize() {
  88. return 1 + sizeOf(messageId);
  89. }
  90. }