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.ProcessPerformanceData;
12 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
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
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "GetProcessPerformanceLogsByRangeResponseMsg", propOrder = {
40 "classification",
41 "processData",
42 "installedMemory"
43 })
44 public class GetProcessPerformanceLogsByRangeResponseMsg
45 implements Serializable
46 {
47
48 private final static long serialVersionUID = 1L;
49 @XmlElement(required = true, nillable = true)
50 protected SecurityWrapper classification;
51 @XmlElement(name = "ProcessData")
52 protected List<ProcessPerformanceData> processData;
53 @XmlElement(name = "InstalledMemory")
54 protected long installedMemory;
55
56
57
58
59
60
61
62
63
64 public SecurityWrapper getClassification() {
65 return classification;
66 }
67
68
69
70
71
72
73
74
75
76 public void setClassification(SecurityWrapper value) {
77 this.classification = value;
78 }
79
80 public boolean isSetClassification() {
81 return (this.classification!= null);
82 }
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106 public List<ProcessPerformanceData> getProcessData() {
107 if (processData == null) {
108 processData = new ArrayList<ProcessPerformanceData>();
109 }
110 return this.processData;
111 }
112
113 public boolean isSetProcessData() {
114 return ((this.processData!= null)&&(!this.processData.isEmpty()));
115 }
116
117 public void unsetProcessData() {
118 this.processData = null;
119 }
120
121
122
123
124
125 public long getInstalledMemory() {
126 return installedMemory;
127 }
128
129
130
131
132
133 public void setInstalledMemory(long value) {
134 this.installedMemory = value;
135 }
136
137 public boolean isSetInstalledMemory() {
138 return true;
139 }
140
141 }