/servers/jain-slee/resources/diameter-sh-client/common/events/src/main/java/org/mobicents/slee/resource/diameter/sh/events/avp/userdata/TInitialFilterCriteria.java

http://mobicents.googlecode.com/ · Java · 150 lines · 62 code · 17 blank · 71 comment · 2 complexity · b3e3d3a85e3319d452b97f03f825df3e 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.sh.events.avp.userdata;
  23. import java.util.ArrayList;
  24. import java.util.List;
  25. import javax.xml.bind.annotation.XmlAccessType;
  26. import javax.xml.bind.annotation.XmlAccessorType;
  27. import javax.xml.bind.annotation.XmlAnyElement;
  28. import javax.xml.bind.annotation.XmlElement;
  29. import javax.xml.bind.annotation.XmlType;
  30. import net.java.slee.resource.diameter.sh.events.avp.userdata.ApplicationServer;
  31. import net.java.slee.resource.diameter.sh.events.avp.userdata.Extension;
  32. import net.java.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria;
  33. import net.java.slee.resource.diameter.sh.events.avp.userdata.Trigger;
  34. /**
  35. * <p>Java class for tInitialFilterCriteria complex type.
  36. *
  37. * <p>The following schema fragment specifies the expected content contained within this class.
  38. *
  39. * <pre>
  40. * &lt;complexType name="tInitialFilterCriteria">
  41. * &lt;complexContent>
  42. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  43. * &lt;sequence>
  44. * &lt;element name="Priority" type="{}tPriority"/>
  45. * &lt;element name="TriggerPoint" type="{}tTrigger" minOccurs="0"/>
  46. * &lt;element name="ApplicationServer" type="{}tApplicationServer"/>
  47. * &lt;element name="Extension" type="{}tExtension" minOccurs="0"/>
  48. * &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
  49. * &lt;/sequence>
  50. * &lt;/restriction>
  51. * &lt;/complexContent>
  52. * &lt;/complexType>
  53. * </pre>
  54. *
  55. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  56. */
  57. @XmlAccessorType(XmlAccessType.FIELD)
  58. @XmlType(name = "tInitialFilterCriteria", propOrder = {
  59. "priority",
  60. "triggerPoint",
  61. "applicationServer",
  62. "extension",
  63. "any"
  64. })
  65. public class TInitialFilterCriteria implements InitialFilterCriteria {
  66. @XmlElement(name = "Priority")
  67. protected int priority;
  68. @XmlElement(name = "TriggerPoint")
  69. protected TTrigger triggerPoint;
  70. @XmlElement(name = "ApplicationServer", required = true)
  71. protected TApplicationServer applicationServer;
  72. @XmlElement(name = "Extension")
  73. protected TExtension extension;
  74. @XmlAnyElement(lax = true)
  75. protected List<Object> any;
  76. /* (non-Javadoc)
  77. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#getPriority()
  78. */
  79. public int getPriority() {
  80. return priority;
  81. }
  82. /* (non-Javadoc)
  83. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#setPriority(int)
  84. */
  85. public void setPriority(int value) {
  86. this.priority = value;
  87. }
  88. /* (non-Javadoc)
  89. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#getTriggerPoint()
  90. */
  91. public Trigger getTriggerPoint() {
  92. return triggerPoint;
  93. }
  94. /* (non-Javadoc)
  95. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#setTriggerPoint(org.mobicents.slee.resource.diameter.sh.events.avp.userdata.TTrigger)
  96. */
  97. public void setTriggerPoint(Trigger value) {
  98. this.triggerPoint = (TTrigger) value;
  99. }
  100. /* (non-Javadoc)
  101. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#getApplicationServer()
  102. */
  103. public ApplicationServer getApplicationServer() {
  104. return applicationServer;
  105. }
  106. /* (non-Javadoc)
  107. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#setApplicationServer(org.mobicents.slee.resource.diameter.sh.events.avp.userdata.ApplicationServer)
  108. */
  109. public void setApplicationServer(ApplicationServer value) {
  110. this.applicationServer = (TApplicationServer) value;
  111. }
  112. /* (non-Javadoc)
  113. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#getExtension()
  114. */
  115. public Extension getExtension() {
  116. return extension;
  117. }
  118. /* (non-Javadoc)
  119. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#setExtension(org.mobicents.slee.resource.diameter.sh.events.avp.userdata.Extension)
  120. */
  121. public void setExtension(Extension value) {
  122. this.extension = (TExtension) value;
  123. }
  124. /* (non-Javadoc)
  125. * @see org.mobicents.slee.resource.diameter.sh.events.avp.userdata.InitialFilterCriteria#getAny()
  126. */
  127. public List<Object> getAny() {
  128. if (any == null) {
  129. any = new ArrayList<Object>();
  130. }
  131. return this.any;
  132. }
  133. }