/servers/jain-slee/resources/diameter-s6a/events/src/main/java/org/mobicents/slee/resource/diameter/s6a/events/CancelLocationRequestImpl.java

http://mobicents.googlecode.com/ · Java · 132 lines · 52 code · 17 blank · 63 comment · 1 complexity · db4f06fdc0cb85cfecffb559b5e13243 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.s6a.events;
  23. import static net.java.slee.resource.diameter.s6a.events.avp.DiameterS6aAvpCodes.CANCELLATION_TYPE;
  24. import static net.java.slee.resource.diameter.s6a.events.avp.DiameterS6aAvpCodes.S6A_VENDOR_ID;
  25. import static net.java.slee.resource.diameter.s6a.events.avp.DiameterS6aAvpCodes.SUPPORTED_FEATURES;
  26. import net.java.slee.resource.diameter.base.events.avp.AuthSessionStateType;
  27. import net.java.slee.resource.diameter.base.events.avp.DiameterAvpCodes;
  28. import net.java.slee.resource.diameter.s6a.events.CancelLocationRequest;
  29. import net.java.slee.resource.diameter.s6a.events.avp.CancellationType;
  30. import net.java.slee.resource.diameter.s6a.events.avp.SupportedFeaturesAvp;
  31. import org.jdiameter.api.Message;
  32. import org.mobicents.slee.resource.diameter.base.events.DiameterMessageImpl;
  33. import org.mobicents.slee.resource.diameter.s6a.events.avp.SupportedFeaturesAvpImpl;
  34. /**
  35. * Implementation for {@link CancelLocationRequest}
  36. *
  37. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  38. */
  39. public class CancelLocationRequestImpl extends DiameterMessageImpl implements CancelLocationRequest {
  40. /**
  41. * @param message
  42. */
  43. public CancelLocationRequestImpl(Message message) {
  44. super(message);
  45. }
  46. /*
  47. * (non-Javadoc)
  48. * @see org.mobicents.slee.resource.diameter.base.events.DiameterMessageImpl#getLongName()
  49. */
  50. public String getLongName() {
  51. return "Cancel-Location-Request";
  52. }
  53. /* (non-Javadoc)
  54. * @see org.mobicents.slee.resource.diameter.base.events.DiameterMessageImpl#getShortName()
  55. */
  56. public String getShortName() {
  57. return "CLR";
  58. }
  59. /* (non-Javadoc)
  60. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#hasAuthSessionState()
  61. */
  62. public boolean hasAuthSessionState() {
  63. return hasAvp(DiameterAvpCodes.AUTH_SESSION_STATE);
  64. }
  65. /* (non-Javadoc)
  66. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#getAuthSessionState()
  67. */
  68. public AuthSessionStateType getAuthSessionState() {
  69. return (AuthSessionStateType) getAvpAsEnumerated(DiameterAvpCodes.AUTH_SESSION_STATE, AuthSessionStateType.class);
  70. }
  71. /* (non-Javadoc)
  72. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#setAuthSessionState(net.java.slee.resource.diameter.base.events.avp.AuthSessionStateType)
  73. */
  74. public void setAuthSessionState(AuthSessionStateType authSessionState) {
  75. addAvp(DiameterAvpCodes.AUTH_SESSION_STATE, authSessionState.getValue());
  76. }
  77. /* (non-Javadoc)
  78. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#setSupportedFeatures(net.java.slee.resource.diameter.s6a.events.avp.SupportedFeaturesAvp)
  79. */
  80. public void setSupportedFeatures(SupportedFeaturesAvp supportedFeatures) {
  81. addAvp(SUPPORTED_FEATURES, S6A_VENDOR_ID, supportedFeatures.byteArrayValue());
  82. }
  83. /* (non-Javadoc)
  84. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#setSupportedFeatureses(net.java.slee.resource.diameter.s6a.events.avp.SupportedFeaturesAvp[])
  85. */
  86. public void setSupportedFeatureses(SupportedFeaturesAvp[] supportedFeatureses) {
  87. for (SupportedFeaturesAvp supportedFeatures : supportedFeatureses) {
  88. setSupportedFeatures(supportedFeatures);
  89. }
  90. }
  91. /* (non-Javadoc)
  92. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#getSupportedFeatureses()
  93. */
  94. public SupportedFeaturesAvp[] getSupportedFeatureses() {
  95. return (SupportedFeaturesAvp[]) getAvpsAsCustom(SUPPORTED_FEATURES, S6A_VENDOR_ID, SupportedFeaturesAvpImpl.class);
  96. }
  97. /* (non-Javadoc)
  98. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#hasCancellationType()
  99. */
  100. public boolean hasCancellationType() {
  101. return hasAvp(CANCELLATION_TYPE, S6A_VENDOR_ID);
  102. }
  103. /* (non-Javadoc)
  104. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#getCancellationType()
  105. */
  106. public CancellationType getCancellationType() {
  107. return (CancellationType) getAvpAsEnumerated(CANCELLATION_TYPE, S6A_VENDOR_ID, CancellationType.class);
  108. }
  109. /* (non-Javadoc)
  110. * @see net.java.slee.resource.diameter.s6a.events.CancelLocationRequest#setCancellationType(net.java.slee.resource.diameter.s6a.events.avp.CancellationType)
  111. */
  112. public void setCancellationType(CancellationType cancellationType) {
  113. addAvp(CANCELLATION_TYPE, S6A_VENDOR_ID, cancellationType.getValue());
  114. }
  115. }