View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.dataaccessservice;
3   
4   import java.io.Serializable;
5   import java.util.ArrayList;
6   import java.util.List;
7   import javax.xml.bind.annotation.XmlAccessType;
8   import javax.xml.bind.annotation.XmlAccessorType;
9   import javax.xml.bind.annotation.XmlElement;
10  import javax.xml.bind.annotation.XmlType;
11  import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
12  
13  
14  /**
15   * response message
16   * 
17   * <p>Java class for GetServiceDependenciesResponseMsg complex type.
18   * 
19   * <p>The following schema fragment specifies the expected content contained within this class.
20   * 
21   * <pre>
22   * &lt;complexType name="GetServiceDependenciesResponseMsg">
23   *   &lt;complexContent>
24   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25   *       &lt;sequence>
26   *         &lt;element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
27   *         &lt;element name="idependon" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}dependencies" maxOccurs="unbounded"/>
28   *         &lt;element name="dependonme" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}dependencies" maxOccurs="unbounded"/>
29   *       &lt;/sequence>
30   *     &lt;/restriction>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "GetServiceDependenciesResponseMsg", propOrder = {
39      "classification",
40      "idependon",
41      "dependonme"
42  })
43  public class GetServiceDependenciesResponseMsg
44      implements Serializable
45  {
46  
47      private final static long serialVersionUID = 1L;
48      @XmlElement(required = true, nillable = true)
49      protected SecurityWrapper classification;
50      @XmlElement(required = false, nillable = true)
51      protected List<Dependencies> idependon;
52      @XmlElement(required = false, nillable = true)
53      protected List<Dependencies> dependonme;
54  
55      /**
56       * Gets the value of the classification property.
57       * 
58       * @return
59       *     possible object is
60       *     {@link SecurityWrapper }
61       *     
62       */
63      public SecurityWrapper getClassification() {
64          return classification;
65      }
66  
67      /**
68       * Sets the value of the classification property.
69       * 
70       * @param value
71       *     allowed object is
72       *     {@link SecurityWrapper }
73       *     
74       */
75      public void setClassification(SecurityWrapper value) {
76          this.classification = value;
77      }
78  
79      public boolean isSetClassification() {
80          return (this.classification!= null);
81      }
82  
83      /**
84       * Gets the value of the idependon property.
85       * 
86       * <p>
87       * This accessor method returns a reference to the live list,
88       * not a snapshot. Therefore any modification you make to the
89       * returned list will be present inside the JAXB object.
90       * This is why there is not a <CODE>set</CODE> method for the idependon property.
91       * 
92       * <p>
93       * For example, to add a new item, do as follows:
94       * <pre>
95       *    getIdependon().add(newItem);
96       * </pre>
97       * 
98       * 
99       * <p>
100      * Objects of the following type(s) are allowed in the list
101      * {@link Dependencies }
102      * 
103      * 
104      */
105     public List<Dependencies> getIdependon() {
106         if (idependon == null) {
107             idependon = new ArrayList<Dependencies>();
108         }
109         return this.idependon;
110     }
111 
112     public boolean isSetIdependon() {
113         return ((this.idependon!= null)&&(!this.idependon.isEmpty()));
114     }
115 
116     public void unsetIdependon() {
117         this.idependon = null;
118     }
119 
120     /**
121      * Gets the value of the dependonme property.
122      * 
123      * <p>
124      * This accessor method returns a reference to the live list,
125      * not a snapshot. Therefore any modification you make to the
126      * returned list will be present inside the JAXB object.
127      * This is why there is not a <CODE>set</CODE> method for the dependonme property.
128      * 
129      * <p>
130      * For example, to add a new item, do as follows:
131      * <pre>
132      *    getDependonme().add(newItem);
133      * </pre>
134      * 
135      * 
136      * <p>
137      * Objects of the following type(s) are allowed in the list
138      * {@link Dependencies }
139      * 
140      * 
141      */
142     public List<Dependencies> getDependonme() {
143         if (dependonme == null) {
144             dependonme = new ArrayList<Dependencies>();
145         }
146         return this.dependonme;
147     }
148 
149     public boolean isSetDependonme() {
150         return ((this.dependonme!= null)&&(!this.dependonme.isEmpty()));
151     }
152 
153     public void unsetDependonme() {
154         this.dependonme = null;
155     }
156 
157 }