/servers/jain-slee/resources/diameter-cx-dx/events/src/main/java/net/java/slee/resource/diameter/cxdx/events/RegistrationTerminationAnswer.java

http://mobicents.googlecode.com/ · Java · 289 lines · 40 code · 32 blank · 217 comment · 0 complexity · ec1c9345a742a11c0f7f92ec30865275 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 net.java.slee.resource.diameter.cxdx.events;
  23. import net.java.slee.resource.diameter.base.events.DiameterMessage;
  24. import net.java.slee.resource.diameter.base.events.avp.AuthSessionStateType;
  25. import net.java.slee.resource.diameter.base.events.avp.DiameterIdentity;
  26. import net.java.slee.resource.diameter.base.events.avp.ExperimentalResultAvp;
  27. import net.java.slee.resource.diameter.base.events.avp.FailedAvp;
  28. import net.java.slee.resource.diameter.base.events.avp.ProxyInfoAvp;
  29. import net.java.slee.resource.diameter.base.events.avp.VendorSpecificApplicationIdAvp;
  30. import net.java.slee.resource.diameter.cxdx.events.avp.AssociatedIdentities;
  31. import net.java.slee.resource.diameter.cxdx.events.avp.SupportedFeaturesAvp;
  32. /**
  33. * <pre>
  34. * <b>6.1.10 Registration-Termination-Answer (RTA) Command</b>
  35. * The Registration-Termination-Answer (RTA) command, indicated by the Command-Code field set to
  36. * 304 and the ???R??? bit cleared in the Command Flags field, is sent by a client in response to the
  37. * Registration-Termination-Request command. The Experimental-Result AVP may contain one of the
  38. * values defined in section 6.2.
  39. *
  40. * Message Format
  41. * <Registration-Termination-Answer> ::= < Diameter Header: 304, PXY, 16777216 >
  42. * < Session-Id >
  43. * { Vendor-Specific-Application-Id }
  44. * [ Result-Code ]
  45. * [ Experimental-Result ]
  46. * { Auth-Session-State }
  47. * { Origin-Host }
  48. * { Origin-Realm }
  49. * [ Associated-Identities ]
  50. * *[ Supported-Features ]
  51. * *[ AVP ]
  52. * *[ Failed-AVP ]
  53. * *[ Proxy-Info ]
  54. * *[ Route-Record ]
  55. *
  56. * </pre>
  57. *
  58. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  59. * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a>
  60. */
  61. public interface RegistrationTerminationAnswer extends DiameterMessage {
  62. public static final int COMMAND_CODE = 304;
  63. /**
  64. * Returns true if the Vendor-Specific-Application-Id AVP is present in the
  65. * message.
  66. */
  67. boolean hasVendorSpecificApplicationId();
  68. /**
  69. * Returns the value of the Vendor-Specific-Application-Id AVP, of type
  70. * Grouped.
  71. *
  72. * @return the value of the Vendor-Specific-Application-Id AVP or null if it
  73. * has not been set on this message
  74. */
  75. VendorSpecificApplicationIdAvp getVendorSpecificApplicationId();
  76. /**
  77. * Sets the value of the Vendor-Specific-Application-Id AVP, of type
  78. * Grouped.
  79. *
  80. * @throws IllegalStateException
  81. * if setVendorSpecificApplicationId has already been called
  82. */
  83. void setVendorSpecificApplicationId(VendorSpecificApplicationIdAvp vendorSpecificApplicationId);
  84. /**
  85. * Returns true if the Result-Code AVP is present in the message.
  86. *
  87. * @return
  88. */
  89. boolean hasResultCode();
  90. /**
  91. * Returns the value of the Result-Code AVP, of type Unsigned32.
  92. *
  93. * @return
  94. */
  95. long getResultCode();
  96. /**
  97. * Sets the value of the Result-Code AVP, of type Unsigned32.
  98. *
  99. * @param resultCode
  100. * @throws IllegalStateException
  101. */
  102. void setResultCode(long resultCode) throws IllegalStateException;
  103. /**
  104. * Returns true if the Experimental-Result AVP is present in the message.
  105. */
  106. boolean hasExperimentalResult();
  107. /**
  108. * Returns the value of the Experimental-Result AVP, of type Grouped.
  109. *
  110. * @return the value of the Experimental-Result AVP or null if it has not
  111. * been set on this message
  112. */
  113. ExperimentalResultAvp getExperimentalResult();
  114. /**
  115. * Sets the value of the Experimental-Result AVP, of type Grouped.
  116. *
  117. * @throws IllegalStateException
  118. * if setExperimentalResult has already been called
  119. */
  120. void setExperimentalResult(ExperimentalResultAvp experimentalResult);
  121. /**
  122. * Returns true if the Auth-Session-State AVP is present in the message.
  123. */
  124. boolean hasAuthSessionState();
  125. /**
  126. * Returns the value of the Auth-Session-State AVP, of type Enumerated. A
  127. * return value of null implies that the AVP has not been set.
  128. */
  129. AuthSessionStateType getAuthSessionState();
  130. /**
  131. * Sets the value of the Auth-Session-State AVP, of type Enumerated.
  132. *
  133. * @throws IllegalStateException
  134. * if setAuthSessionState has already been called
  135. */
  136. void setAuthSessionState(AuthSessionStateType authSessionState);
  137. /**
  138. * Returns true if the Associated-Identities AVP is present in the message.
  139. */
  140. boolean hasAssociatedIdentities();
  141. /**
  142. * Returns the value of the Associated-Identities AVP, of type Grouped.
  143. * @return the value of the Associated-Identities AVP or null if it has not been set on this message
  144. */
  145. AssociatedIdentities getAssociatedIdentities();
  146. /**
  147. * Sets the value of the Associated-Identities AVP, of type Grouped.
  148. * @throws IllegalStateException if setAssociatedIdentities has already been called
  149. */
  150. void setAssociatedIdentities(AssociatedIdentities associatedIdentities);
  151. /**
  152. * Returns the set of Supported-Features AVPs. The returned array contains
  153. * the AVPs in the order they appear in the message. A return value of null
  154. * implies that no Supported-Features AVPs have been set. The elements in
  155. * the given array are SupportedFeatures objects.
  156. */
  157. SupportedFeaturesAvp[] getSupportedFeatureses();
  158. /**
  159. * Sets a single Supported-Features AVP in the message, of type Grouped.
  160. *
  161. * @throws IllegalStateException
  162. * if setSupportedFeatures or setSupportedFeatureses has already
  163. * been called
  164. */
  165. void setSupportedFeatures(SupportedFeaturesAvp supportedFeatures);
  166. /**
  167. * Sets the set of Supported-Features AVPs, with all the values in the given
  168. * array. The AVPs will be added to message in the order in which they
  169. * appear in the array.
  170. *
  171. * Note: the array must not be altered by the caller following this call,
  172. * and getSupportedFeatureses() is not guaranteed to return the same array
  173. * instance, e.g. an "==" check would fail.
  174. *
  175. * @throws IllegalStateException
  176. * if setSupportedFeatures or setSupportedFeatureses has already
  177. * been called
  178. */
  179. void setSupportedFeatureses(SupportedFeaturesAvp[] supportedFeatureses);
  180. /**
  181. * Returns the set of Failed-AVP AVPs. The returned array contains the AVPs
  182. * in the order they appear in the message. A return value of null implies
  183. * that no Failed-AVP AVPs have been set. The elements in the given array
  184. * are FailedAvp objects.
  185. */
  186. FailedAvp[] getFailedAvps();
  187. /**
  188. * Sets a single Failed-AVP AVP in the message, of type Grouped.
  189. *
  190. * @throws IllegalStateException
  191. * if setFailedAvp or setFailedAvps has already been called
  192. */
  193. void setFailedAvp(FailedAvp failedAvp);
  194. /**
  195. * Sets the set of Failed-AVP AVPs, with all the values in the given array.
  196. * The AVPs will be added to message in the order in which they appear in
  197. * the array.
  198. *
  199. * Note: the array must not be altered by the caller following this call,
  200. * and getFailedAvps() is not guaranteed to return the same array instance,
  201. * e.g. an "==" check would fail.
  202. *
  203. * @throws IllegalStateException
  204. * if setFailedAvp or setFailedAvps has already been called
  205. */
  206. void setFailedAvps(FailedAvp[] failedAvps);
  207. /**
  208. * Returns the set of Proxy-Info AVPs. The returned array contains
  209. * the AVPs in the order they appear in the message.
  210. * A return value of null implies that no Proxy-Info AVPs have been set.
  211. * The elements in the given array are ProxyInfo objects.
  212. */
  213. ProxyInfoAvp[] getProxyInfos();
  214. /**
  215. * Sets a single Proxy-Info AVP in the message, of type Grouped.
  216. * @throws IllegalStateException if setProxyInfo or setProxyInfos
  217. * has already been called
  218. */
  219. void setProxyInfo(ProxyInfoAvp proxyInfo);
  220. /**
  221. * Sets the set of Proxy-Info AVPs, with all the values in the given array.
  222. * The AVPs will be added to message in the order in which they appear in the array.
  223. *
  224. * Note: the array must not be altered by the caller following this call, and
  225. * getProxyInfos() is not guaranteed to return the same array instance,
  226. * e.g. an "==" check would fail.
  227. *
  228. * @throws IllegalStateException if setProxyInfo or setProxyInfos
  229. * has already been called
  230. */
  231. void setProxyInfos(ProxyInfoAvp[] proxyInfos);
  232. /**
  233. * Returns the set of Route-Record AVPs. The returned array contains
  234. * the AVPs in the order they appear in the message.
  235. * A return value of null implies that no Route-Record AVPs have been set.
  236. * The elements in the given array are DiameterIdentity objects.
  237. */
  238. DiameterIdentity[] getRouteRecords();
  239. /**
  240. * Sets a single Route-Record AVP in the message, of type DiameterIdentity.
  241. * @throws IllegalStateException if setRouteRecord or setRouteRecords
  242. * has already been called
  243. */
  244. void setRouteRecord(DiameterIdentity routeRecord);
  245. /**
  246. * Sets the set of Route-Record AVPs, with all the values in the given array.
  247. * The AVPs will be added to message in the order in which they appear in the array.
  248. *
  249. * Note: the array must not be altered by the caller following this call, and
  250. * getRouteRecords() is not guaranteed to return the same array instance,
  251. * e.g. an "==" check would fail.
  252. *
  253. * @throws IllegalStateException if setRouteRecord or setRouteRecords
  254. * has already been called
  255. */
  256. void setRouteRecords(DiameterIdentity[] routeRecords);
  257. }