/servers/jain-slee/resources/diameter-s6a/events/src/main/java/net/java/slee/resource/diameter/s6a/events/NotifyAnswer.java

http://mobicents.googlecode.com/ · Java · 254 lines · 36 code · 29 blank · 189 comment · 0 complexity · f8c49ae4925c50f05cd66e608d155811 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.s6a.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.s6a.events.avp.SupportedFeaturesAvp;
  31. /**
  32. * Defines an interface representing the Authentication-Information-Request message.
  33. * From the Diameter S6a Reference Point Protocol Details (3GPP TS 29.272 V9.6.0) specification:
  34. *
  35. * <pre>
  36. * 7.2.18 Notify-Answer (NOA) Command
  37. *
  38. * The Notify-Answer (NOA) command, indicated by the Command-Code field set to 323 and the 'R' bit
  39. * cleared in the Command Flags field, is sent from HSS to MME or SGSN.
  40. *
  41. * Message Format
  42. * < Notify-Answer> ::= < Diameter Header: 323, PXY, 16777251 >
  43. * < Session-Id >
  44. * [ Vendor-Specific-Application-Id ]
  45. * [ Result-Code ]
  46. * [ Experimental-Result ]
  47. * { Auth-Session-State }
  48. * { Origin-Host }
  49. * { Origin-Realm }
  50. * *[ Supported-Features ]
  51. * *[ AVP ]
  52. * *[ Failed-AVP ]
  53. * *[ Proxy-Info ]
  54. * *[ Route-Record ]
  55. * </pre>
  56. *
  57. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  58. */
  59. public interface NotifyAnswer extends DiameterMessage {
  60. public static final int COMMAND_CODE = 323;
  61. /**
  62. * Returns true if the Vendor-Specific-Application-Id AVP is present in the message.
  63. *
  64. * @return true if the Vendor-Specific-Application-Id AVP is present in the message, false otherwise
  65. */
  66. public boolean hasVendorSpecificApplicationId();
  67. /**
  68. * Returns the value of the Vendor-Specific-Application-Id AVP, of type Grouped.
  69. *
  70. * @return the value of the Vendor-Specific-Application-Id AVP or null if it has not been set on this message
  71. */
  72. public VendorSpecificApplicationIdAvp getVendorSpecificApplicationId();
  73. /**
  74. * Sets the value of the Vendor-Specific-Application-Id AVP, of type Grouped.
  75. *
  76. * @param vendorSpecificApplicationId the new value for the Vendor-Specific-Application-Id AVP
  77. */
  78. public void setVendorSpecificApplicationId(VendorSpecificApplicationIdAvp vendorSpecificApplicationId);
  79. /**
  80. * Returns true if the Result-Code AVP is present in the message.
  81. *
  82. * @return
  83. */
  84. boolean hasResultCode();
  85. /**
  86. * Returns the value of the Result-Code AVP, of type Unsigned32.
  87. * Use {@link #hasResultCode()} to check the existence of this AVP.
  88. *
  89. * @return the value of the Result-Code AVP
  90. */
  91. long getResultCode();
  92. /**
  93. * Sets the value of the Result-Code AVP, of type Unsigned32.
  94. *
  95. * @param resultCode
  96. */
  97. void setResultCode(long resultCode);
  98. /**
  99. * Returns true if the Experimental-Result AVP is present in the message.
  100. *
  101. * @return
  102. */
  103. public boolean hasExperimentalResult();
  104. /**
  105. * Returns the value of the Experimental-Result AVP, of type Grouped.
  106. * Use {@link #hasExperimentalResult()} to check the existence of this AVP.
  107. *
  108. * @return the value of the Experimental-Result AVP
  109. */
  110. public ExperimentalResultAvp getExperimentalResult();
  111. /**
  112. * Sets the value of the Experimental-Result AVP, of type Grouped.
  113. *
  114. * @param experimentalResult
  115. */
  116. public void setExperimentalResult(ExperimentalResultAvp experimentalResult);
  117. /**
  118. * Returns true if the Auth-Session-State AVP is present in the message.
  119. *
  120. * @return true if the Auth-Session-State AVP is present in the message, false otherwise
  121. */
  122. public boolean hasAuthSessionState();
  123. /**
  124. * Returns the value of the Auth-Session-State AVP, of type Enumerated.
  125. *
  126. * @return the value of the Auth-Session-State AVP, of type Enumerated
  127. */
  128. public AuthSessionStateType getAuthSessionState();
  129. /**
  130. * Sets the value of the Auth-Session-State AVP, of type Enumerated.
  131. *
  132. * @param authSessionState
  133. */
  134. public void setAuthSessionState(AuthSessionStateType authSessionState);
  135. /**
  136. * Set a single instance value of the Supported-Features AVP, of type Grouped.
  137. *
  138. * @param supportedFeatures
  139. */
  140. public void setSupportedFeatures(SupportedFeaturesAvp supportedFeatures);
  141. /**
  142. * Set multiple instance value of the Supported-Features AVP, of type Grouped.
  143. *
  144. * @param supportedFeatureses
  145. */
  146. public void setSupportedFeatureses(SupportedFeaturesAvp[] supportedFeatureses);
  147. /**
  148. * Returns the value of the Supported-Features AVP, of type Grouped.
  149. *
  150. * @return
  151. */
  152. public SupportedFeaturesAvp[] getSupportedFeatureses();
  153. /**
  154. * Returns the set of Failed-AVP AVPs. The returned array contains the AVPs in the order they
  155. * appear in the message.
  156. * A return value of null implies that no Failed-AVP AVPs have been set.
  157. * The elements in the given array are FailedAvp objects.
  158. */
  159. public FailedAvp[] getFailedAvps();
  160. /**
  161. * Sets a single Failed-AVP AVP in the message, of type Grouped.
  162. *
  163. * @param failedAvp
  164. */
  165. public void setFailedAvp(FailedAvp failedAvp);
  166. /**
  167. * Sets the set of Failed-AVP AVPs, with all the values in the given array.
  168. * The AVPs will be added to message in the order in which they appear in the array.
  169. *
  170. * Note: the array must not be altered by the caller following this call, and getFailedAvps()
  171. * is not guaranteed to return the same array instance, e.g. an "==" check would fail.
  172. *
  173. * @param failedAvps
  174. */
  175. public void setFailedAvps(FailedAvp[] failedAvps);
  176. /**
  177. * Returns the set of Proxy-Info AVPs. The returned array contains the AVPs in the order they
  178. * appear in the message.
  179. * A return value of null implies that no Proxy-Info AVPs have been set.
  180. * The elements in the given array are ProxyInfo objects.
  181. *
  182. * @return
  183. */
  184. public ProxyInfoAvp[] getProxyInfos();
  185. /**
  186. * Sets a single Proxy-Info AVP in the message, of type Grouped.
  187. *
  188. * @param proxyInfo
  189. */
  190. public void setProxyInfo(ProxyInfoAvp proxyInfo);
  191. /**
  192. * Sets the set of Proxy-Info AVPs, with all the values in the given array.
  193. * The AVPs will be added to message in the order in which they appear in the array.
  194. *
  195. * Note: the array must not be altered by the caller following this call, and getProxyInfos() is
  196. * not guaranteed to return the same array instance, e.g. an "==" check would fail.
  197. *
  198. * @param proxyInfos
  199. */
  200. public void setProxyInfos(ProxyInfoAvp[] proxyInfos);
  201. /**
  202. * Returns the set of Route-Record AVPs. The returned array contains the AVPs in the order they appear in the message.
  203. * A return value of null implies that no Route-Record AVPs have been set.
  204. * The elements in the given array are DiameterIdentity objects.
  205. *
  206. * @return
  207. */
  208. public DiameterIdentity[] getRouteRecords();
  209. /**
  210. * Sets a single Route-Record AVP in the message, of type DiameterIdentity.
  211. *
  212. * @param routeRecord
  213. */
  214. public void setRouteRecord(DiameterIdentity routeRecord);
  215. /**
  216. * Sets the set of Route-Record AVPs, with all the values in the given array.
  217. * The AVPs will be added to message in the order in which they appear in the array.
  218. *
  219. * Note: the array must not be altered by the caller following this call, and getRouteRecords() is
  220. * not guaranteed to return the same array instance, e.g. an "==" check would fail.
  221. *
  222. * @param routeRecords
  223. */
  224. public void setRouteRecords(DiameterIdentity[] routeRecords);
  225. }