/servers/jain-slee/resources/diameter-cca/common/events/src/main/java/org/mobicents/slee/resource/diameter/cca/events/avp/SubscriptionIdAvpImpl.java

http://mobicents.googlecode.com/ · Java · 103 lines · 31 code · 13 blank · 59 comment · 0 complexity · 2f06a42779b087104208c32ce99423d4 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.slee.resource.diameter.cca.events.avp;
  23. import net.java.slee.resource.diameter.cca.events.avp.CreditControlAVPCodes;
  24. import net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp;
  25. import net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdType;
  26. import org.mobicents.slee.resource.diameter.base.events.avp.GroupedAvpImpl;
  27. /**
  28. * Start time:18:25:13 2008-11-10<br>
  29. * Project: mobicents-diameter-parent<br>
  30. * Implementation of AVP: {@link SubscriptionIdAvp}
  31. *
  32. * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a>
  33. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  34. */
  35. public class SubscriptionIdAvpImpl extends GroupedAvpImpl implements SubscriptionIdAvp {
  36. public SubscriptionIdAvpImpl() {
  37. super();
  38. }
  39. public SubscriptionIdAvpImpl(int code, long vendorId, int mnd, int prt, byte[] value) {
  40. super(code, vendorId, mnd, prt, value);
  41. }
  42. /*
  43. * (non-Javadoc)
  44. *
  45. * @see net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp#getSubscriptionIdData()
  46. */
  47. public String getSubscriptionIdData() {
  48. return getAvpAsUTF8String(CreditControlAVPCodes.Subscription_Id_Data);
  49. }
  50. /*
  51. * (non-Javadoc)
  52. *
  53. * @see net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp#getSubscriptionIdType()
  54. */
  55. public SubscriptionIdType getSubscriptionIdType() {
  56. return (SubscriptionIdType) getAvpAsEnumerated(CreditControlAVPCodes.Subscription_Id_Type, SubscriptionIdType.class);
  57. }
  58. /*
  59. * (non-Javadoc)
  60. *
  61. * @see net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp#hasSubscriptionIdData()
  62. */
  63. public boolean hasSubscriptionIdData() {
  64. return hasAvp(CreditControlAVPCodes.Subscription_Id_Data);
  65. }
  66. /*
  67. * (non-Javadoc)
  68. *
  69. * @see net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp#hasSubscriptionIdType()
  70. */
  71. public boolean hasSubscriptionIdType() {
  72. return hasAvp(CreditControlAVPCodes.Subscription_Id_Type);
  73. }
  74. /*
  75. * (non-Javadoc)
  76. *
  77. * @see net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp#setSubscriptionIdData(java.lang.String)
  78. */
  79. public void setSubscriptionIdData(String data) {
  80. addAvp(CreditControlAVPCodes.Subscription_Id_Data, data);
  81. }
  82. /*
  83. * (non-Javadoc)
  84. *
  85. * @see net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdAvp#setSubscriptionIdType(net.java.slee.resource.diameter.cca.events.avp.SubscriptionIdType)
  86. */
  87. public void setSubscriptionIdType(SubscriptionIdType type) {
  88. addAvp(CreditControlAVPCodes.Subscription_Id_Type, type.getValue());
  89. }
  90. }