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

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