View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.dataaccessservice;
3   
4   import java.io.Serializable;
5   import javax.xml.bind.annotation.XmlAccessType;
6   import javax.xml.bind.annotation.XmlAccessorType;
7   import javax.xml.bind.annotation.XmlElement;
8   import javax.xml.bind.annotation.XmlType;
9   import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10  
11  
12  /**
13   * 
14   *             GetMessageLogsResponse
15   *             
16   * 
17   * <p>Java class for GetMessageLogsResponseMsg complex type.
18   * 
19   * <p>The following schema fragment specifies the expected content contained within this class.
20   * 
21   * <pre>
22   * &lt;complexType name="GetMessageLogsResponseMsg">
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="TotalRecords" type="{http://www.w3.org/2001/XMLSchema}int"/>
28   *         &lt;element name="logs" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}ArrayOfTransactionLog"/>
29   *       &lt;/sequence>
30   *     &lt;/restriction>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "GetMessageLogsResponseMsg", propOrder = {
39      "classification",
40      "totalRecords",
41      "logs"
42  })
43  public class GetMessageLogsResponseMsg
44      implements Serializable
45  {
46  
47      private final static long serialVersionUID = 1L;
48      @XmlElement(required = true, nillable = true)
49      protected SecurityWrapper classification;
50      @XmlElement(name = "TotalRecords")
51      protected int totalRecords;
52      @XmlElement(required = false, nillable = true)
53      protected ArrayOfTransactionLog logs;
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 totalRecords property.
85       * 
86       */
87      public int getTotalRecords() {
88          return totalRecords;
89      }
90  
91      /**
92       * Sets the value of the totalRecords property.
93       * 
94       */
95      public void setTotalRecords(int value) {
96          this.totalRecords = value;
97      }
98  
99      public boolean isSetTotalRecords() {
100         return true;
101     }
102 
103     /**
104      * Gets the value of the logs property.
105      * 
106      * @return
107      *     possible object is
108      *     {@link ArrayOfTransactionLog }
109      *     
110      */
111     public ArrayOfTransactionLog getLogs() {
112         return logs;
113     }
114 
115     /**
116      * Sets the value of the logs property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link ArrayOfTransactionLog }
121      *     
122      */
123     public void setLogs(ArrayOfTransactionLog value) {
124         this.logs = value;
125     }
126 
127     public boolean isSetLogs() {
128         return (this.logs!= null);
129     }
130 
131 }