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 GetAuditLogsByTimeRangeResponseMsg complex type.
18   * 
19   * <p>The following schema fragment specifies the expected content contained within this class.
20   * 
21   * <pre>
22   * &lt;complexType name="GetAuditLogsByTimeRangeResponseMsg">
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="AuditLog" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}AuditLog" maxOccurs="unbounded" minOccurs="0"/>
28   *       &lt;/sequence>
29   *     &lt;/restriction>
30   *   &lt;/complexContent>
31   * &lt;/complexType>
32   * </pre>
33   * 
34   * 
35   */
36  @XmlAccessorType(XmlAccessType.FIELD)
37  @XmlType(name = "GetAuditLogsByTimeRangeResponseMsg", propOrder = {
38      "classification",
39      "auditLog"
40  })
41  public class GetAuditLogsByTimeRangeResponseMsg
42      implements Serializable
43  {
44  
45      private final static long serialVersionUID = 1L;
46      @XmlElement(required = true, nillable = true)
47      protected SecurityWrapper classification;
48      @XmlElement(name = "AuditLog")
49      protected List<AuditLog> auditLog;
50  
51      /**
52       * Gets the value of the classification property.
53       * 
54       * @return
55       *     possible object is
56       *     {@link SecurityWrapper }
57       *     
58       */
59      public SecurityWrapper getClassification() {
60          return classification;
61      }
62  
63      /**
64       * Sets the value of the classification property.
65       * 
66       * @param value
67       *     allowed object is
68       *     {@link SecurityWrapper }
69       *     
70       */
71      public void setClassification(SecurityWrapper value) {
72          this.classification = value;
73      }
74  
75      public boolean isSetClassification() {
76          return (this.classification!= null);
77      }
78  
79      /**
80       * Gets the value of the auditLog property.
81       * 
82       * <p>
83       * This accessor method returns a reference to the live list,
84       * not a snapshot. Therefore any modification you make to the
85       * returned list will be present inside the JAXB object.
86       * This is why there is not a <CODE>set</CODE> method for the auditLog property.
87       * 
88       * <p>
89       * For example, to add a new item, do as follows:
90       * <pre>
91       *    getAuditLog().add(newItem);
92       * </pre>
93       * 
94       * 
95       * <p>
96       * Objects of the following type(s) are allowed in the list
97       * {@link AuditLog }
98       * 
99       * 
100      */
101     public List<AuditLog> getAuditLog() {
102         if (auditLog == null) {
103             auditLog = new ArrayList<AuditLog>();
104         }
105         return this.auditLog;
106     }
107 
108     public boolean isSetAuditLog() {
109         return ((this.auditLog!= null)&&(!this.auditLog.isEmpty()));
110     }
111 
112     public void unsetAuditLog() {
113         this.auditLog = null;
114     }
115 
116 }