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

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