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.XmlRootElement;
11  import javax.xml.bind.annotation.XmlType;
12  
13  
14  /**
15   * <p>Java class for anonymous complex type.
16   * 
17   * <p>The following schema fragment specifies the expected content contained within this class.
18   * 
19   * <pre>
20   * &lt;complexType>
21   *   &lt;complexContent>
22   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23   *       &lt;sequence>
24   *         &lt;element name="GetSLAFaultRecordsResponseMsgResult" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}GetSLAFaultRecordsResponseMsg" maxOccurs="unbounded"/>
25   *       &lt;/sequence>
26   *     &lt;/restriction>
27   *   &lt;/complexContent>
28   * &lt;/complexType>
29   * </pre>
30   * 
31   * 
32   */
33  @XmlAccessorType(XmlAccessType.FIELD)
34  @XmlType(name = "", propOrder = {
35      "getSLAFaultRecordsResponseMsgResult"
36  })
37  @XmlRootElement(name = "GetSLAFaultRecordsResponse")
38  public class GetSLAFaultRecordsResponse
39      implements Serializable
40  {
41  
42      private final static long serialVersionUID = 1L;
43      @XmlElement(name = "GetSLAFaultRecordsResponseMsgResult", required = false, nillable = true)
44      protected List<GetSLAFaultRecordsResponseMsg> getSLAFaultRecordsResponseMsgResult;
45  
46      /**
47       * Gets the value of the getSLAFaultRecordsResponseMsgResult property.
48       * 
49       * <p>
50       * This accessor method returns a reference to the live list,
51       * not a snapshot. Therefore any modification you make to the
52       * returned list will be present inside the JAXB object.
53       * This is why there is not a <CODE>set</CODE> method for the getSLAFaultRecordsResponseMsgResult property.
54       * 
55       * <p>
56       * For example, to add a new item, do as follows:
57       * <pre>
58       *    getGetSLAFaultRecordsResponseMsgResult().add(newItem);
59       * </pre>
60       * 
61       * 
62       * <p>
63       * Objects of the following type(s) are allowed in the list
64       * {@link GetSLAFaultRecordsResponseMsg }
65       * 
66       * 
67       */
68      public List<GetSLAFaultRecordsResponseMsg> getGetSLAFaultRecordsResponseMsgResult() {
69          if (getSLAFaultRecordsResponseMsgResult == null) {
70              getSLAFaultRecordsResponseMsgResult = new ArrayList<GetSLAFaultRecordsResponseMsg>();
71          }
72          return this.getSLAFaultRecordsResponseMsgResult;
73      }
74  
75      public boolean isSetGetSLAFaultRecordsResponseMsgResult() {
76          return ((this.getSLAFaultRecordsResponseMsgResult!= null)&&(!this.getSLAFaultRecordsResponseMsgResult.isEmpty()));
77      }
78  
79      public void unsetGetSLAFaultRecordsResponseMsgResult() {
80          this.getSLAFaultRecordsResponseMsgResult = null;
81      }
82  
83  }