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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "GetAllOperationalStatusLogResponseMsg", propOrder = {
39 "classification",
40 "url",
41 "operationalRecord"
42 })
43 public class GetAllOperationalStatusLogResponseMsg
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 = "URL", required = true)
51 protected String url;
52 @XmlElement(name = "OperationalRecord", required = true, nillable = true)
53 protected List<OperationalRecord> operationalRecord;
54
55
56
57
58
59
60
61
62
63 public SecurityWrapper getClassification() {
64 return classification;
65 }
66
67
68
69
70
71
72
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
85
86
87
88
89
90
91 public String getURL() {
92 return url;
93 }
94
95
96
97
98
99
100
101
102
103 public void setURL(String value) {
104 this.url = value;
105 }
106
107 public boolean isSetURL() {
108 return (this.url!= null);
109 }
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133 public List<OperationalRecord> getOperationalRecord() {
134 if (operationalRecord == null) {
135 operationalRecord = new ArrayList<OperationalRecord>();
136 }
137 return this.operationalRecord;
138 }
139
140 public boolean isSetOperationalRecord() {
141 return ((this.operationalRecord!= null)&&(!this.operationalRecord.isEmpty()));
142 }
143
144 public void unsetOperationalRecord() {
145 this.operationalRecord = null;
146 }
147
148 }