/servers/jain-slee/resources/diameter-ro/ratype/src/main/java/net/java/slee/resource/diameter/ro/RoAvpFactory.java

http://mobicents.googlecode.com/ · Java · 294 lines · 67 code · 36 blank · 191 comment · 0 complexity · c032461af8e6b63ea5d449ce1a1cfd75 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.ro;
  23. import net.java.slee.resource.diameter.cca.CreditControlAVPFactory;
  24. import net.java.slee.resource.diameter.ro.events.avp.AdditionalContentInformation;
  25. import net.java.slee.resource.diameter.ro.events.avp.AddressDomain;
  26. import net.java.slee.resource.diameter.ro.events.avp.ApplicationServerInformation;
  27. import net.java.slee.resource.diameter.ro.events.avp.EventType;
  28. import net.java.slee.resource.diameter.ro.events.avp.ImsInformation;
  29. import net.java.slee.resource.diameter.ro.events.avp.InterOperatorIdentifier;
  30. import net.java.slee.resource.diameter.ro.events.avp.LcsClientId;
  31. import net.java.slee.resource.diameter.ro.events.avp.LcsClientName;
  32. import net.java.slee.resource.diameter.ro.events.avp.LcsInformation;
  33. import net.java.slee.resource.diameter.ro.events.avp.LcsRequestorId;
  34. import net.java.slee.resource.diameter.ro.events.avp.LocationType;
  35. import net.java.slee.resource.diameter.ro.events.avp.MbmsInformation;
  36. import net.java.slee.resource.diameter.ro.events.avp.MbmsServiceType;
  37. import net.java.slee.resource.diameter.ro.events.avp.MbmsUserServiceType;
  38. import net.java.slee.resource.diameter.ro.events.avp.MessageBody;
  39. import net.java.slee.resource.diameter.ro.events.avp.MessageClass;
  40. import net.java.slee.resource.diameter.ro.events.avp.MmContentType;
  41. import net.java.slee.resource.diameter.ro.events.avp.MmsInformation;
  42. import net.java.slee.resource.diameter.ro.events.avp.NodeFunctionality;
  43. import net.java.slee.resource.diameter.ro.events.avp.OriginatorAddress;
  44. import net.java.slee.resource.diameter.ro.events.avp.PocInformation;
  45. import net.java.slee.resource.diameter.ro.events.avp.PsFurnishChargingInformation;
  46. import net.java.slee.resource.diameter.ro.events.avp.PsInformation;
  47. import net.java.slee.resource.diameter.ro.events.avp.RecipientAddress;
  48. import net.java.slee.resource.diameter.ro.events.avp.SdpMediaComponent;
  49. import net.java.slee.resource.diameter.ro.events.avp.ServiceInformation;
  50. import net.java.slee.resource.diameter.ro.events.avp.TalkBurstExchange;
  51. import net.java.slee.resource.diameter.ro.events.avp.TimeStamps;
  52. import net.java.slee.resource.diameter.ro.events.avp.TrunkGroupId;
  53. import net.java.slee.resource.diameter.ro.events.avp.WlanInformation;
  54. import net.java.slee.resource.diameter.ro.events.avp.WlanRadioContainer;
  55. /**
  56. * Used by applications to create Diameter Ro request messages.
  57. * Ro answer messages can be created using the RoServerSessionActivity.createRoCreditControlAnswer() method.
  58. *
  59. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  60. * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a>
  61. */
  62. public interface RoAvpFactory extends CreditControlAVPFactory {
  63. public CreditControlAVPFactory getCreditControlAVPFactory();
  64. /**
  65. * Create an empty AdditionalContentInformation (Grouped AVP) instance.
  66. *
  67. * @return
  68. */
  69. public AdditionalContentInformation createAdditionalContentInformation();
  70. /**
  71. * Create an empty AddressDomain (Grouped AVP) instance.
  72. *
  73. * @return
  74. */
  75. public AddressDomain createAddressDomain();
  76. /**
  77. * Create an empty ApplicationServerInformation (Grouped AVP) instance.
  78. *
  79. * @return
  80. */
  81. public ApplicationServerInformation createApplicationServerInformation();
  82. /**
  83. * Create an empty EventType (Grouped AVP) instance.
  84. *
  85. * @return
  86. */
  87. public EventType createEventType();
  88. /**
  89. * Create an empty ImsInformation (Grouped AVP) instance.
  90. *
  91. * @return
  92. */
  93. public ImsInformation createImsInformation();
  94. /**
  95. * Create a ImsInformation (Grouped AVP) instance using required AVP values.
  96. *
  97. * @param nodeFunctionality
  98. * @return
  99. */
  100. public ImsInformation createImsInformation(NodeFunctionality nodeFunctionality);
  101. /**
  102. * Create an empty InterOperatorIdentifier (Grouped AVP) instance.
  103. *
  104. * @return
  105. */
  106. public InterOperatorIdentifier createInterOperatorIdentifier();
  107. /**
  108. * Create an empty LcsClientId (Grouped AVP) instance.
  109. *
  110. * @return
  111. */
  112. public LcsClientId createLcsClientId();
  113. /**
  114. * Create an empty LcsClientName (Grouped AVP) instance.
  115. *
  116. * @return
  117. */
  118. public LcsClientName createLcsClientName();
  119. /**
  120. * Create an empty LcsInformation (Grouped AVP) instance.
  121. *
  122. * @return
  123. */
  124. public LcsInformation createLcsInformation();
  125. /**
  126. * Create an empty LcsRequestorId (Grouped AVP) instance.
  127. *
  128. * @return
  129. */
  130. public LcsRequestorId createLcsRequestorId();
  131. /**
  132. * Create an empty LocationType (Grouped AVP) instance.
  133. *
  134. * @return
  135. */
  136. public LocationType createLocationType();
  137. /**
  138. * Create an empty MbmsInformation (Grouped AVP) instance.
  139. *
  140. * @return
  141. */
  142. public MbmsInformation createMbmsInformation();
  143. /**
  144. * Create a MbmsInformation (Grouped AVP) instance using required AVP
  145. * values.
  146. *
  147. * @param tmgi
  148. * @param mbmsServiceType
  149. * @param mbmsUserServiceType
  150. * @return
  151. */
  152. public MbmsInformation createMbmsInformation(byte[] tmgi, MbmsServiceType mbmsServiceType, MbmsUserServiceType mbmsUserServiceType);
  153. /**
  154. * Create an empty MessageBody (Grouped AVP) instance.
  155. *
  156. * @return
  157. */
  158. public MessageBody createMessageBody();
  159. /**
  160. * Create an empty MessageClass (Grouped AVP) instance.
  161. *
  162. * @return
  163. */
  164. public MessageClass createMessageClass();
  165. /**
  166. * Create an empty MmContentType (Grouped AVP) instance.
  167. *
  168. * @return
  169. */
  170. public MmContentType createMmContentType();
  171. /**
  172. * Create an empty MmsInformation (Grouped AVP) instance.
  173. *
  174. * @return
  175. */
  176. public MmsInformation createMmsInformation();
  177. /**
  178. * Create an empty OriginatorAddress (Grouped AVP) instance.
  179. *
  180. * @return
  181. */
  182. public OriginatorAddress createOriginatorAddress();
  183. /**
  184. * Create an empty PocInformation (Grouped AVP) instance.
  185. *
  186. * @return
  187. */
  188. public PocInformation createPocInformation();
  189. /**
  190. * Create an empty PsFurnishChargingInformation (Grouped AVP) instance.
  191. *
  192. * @return
  193. */
  194. public PsFurnishChargingInformation createPsFurnishChargingInformation();
  195. /**
  196. * Create a PsFurnishChargingInformation (Grouped AVP) instance using
  197. * required AVP values.
  198. *
  199. * @param tgppChargingId
  200. * @param psFreeFormatData
  201. * @return
  202. */
  203. public PsFurnishChargingInformation createPsFurnishChargingInformation(byte[] tgppChargingId, byte[] psFreeFormatData);
  204. /**
  205. * Create an empty PsInformation (Grouped AVP) instance.
  206. *
  207. * @return
  208. */
  209. public PsInformation createPsInformation();
  210. /**
  211. * Create an empty RecipientAddress (Grouped AVP) instance.
  212. *
  213. * @return
  214. */
  215. public RecipientAddress createRecipientAddress();
  216. /**
  217. * Create an empty SdpMediaComponent (Grouped AVP) instance.
  218. *
  219. * @return
  220. */
  221. public SdpMediaComponent createSdpMediaComponent();
  222. /**
  223. * Create an empty ServiceInformation (Grouped AVP) instance.
  224. *
  225. * @return
  226. */
  227. public ServiceInformation createServiceInformation();
  228. /**
  229. * Create an empty TalkBurstExchange (Grouped AVP) instance.
  230. *
  231. * @return
  232. */
  233. public TalkBurstExchange createTalkBurstExchange();
  234. /**
  235. * Create an empty TimeStamps (Grouped AVP) instance.
  236. *
  237. * @return
  238. */
  239. public TimeStamps createTimeStamps();
  240. /**
  241. * Create an empty TrunkGroupId (Grouped AVP) instance.
  242. *
  243. * @return
  244. */
  245. public TrunkGroupId createTrunkGroupId();
  246. /**
  247. * Create an empty WlanInformation (Grouped AVP) instance.
  248. *
  249. * @return
  250. */
  251. public WlanInformation createWlanInformation();
  252. /**
  253. * Create an empty WlanRadioContainer (Grouped AVP) instance.
  254. *
  255. * @return
  256. */
  257. public WlanRadioContainer createWlanRadioContainer();
  258. }