source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDClientItem.java@ 858

Last change on this file since 858 was 858, checked in by tobias, on Apr 9, 2010 at 10:56:07 AM

visual design slightly modified. tree functions extended

File size: 5.9 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class FDClientItem extends ItemType implements UserObjectItem{
3 /**
4 * @uml.property name="name"
5 */
6 private String name;
7 /**
8 * @uml.property name="workingdirectory"
9 */
10 private String workingdirectory;
11 /**
12 * @uml.property name="piddirectory"
13 */
14 private String piddirectory;
15 /**
16 * @uml.property name="heartbeatinterval"
17 */
18 private String heartbeatinterval;
19 /**
20 * @uml.property name="maximumconcurrentjobs"
21 */
22 private String maximumconcurrentjobs;
23 /**
24 * @uml.property name="fdaddresses"
25 */
26 private String fdaddresses;
27 /**
28 * @uml.property name="fdport"
29 */
30 private String fdport;
31 /**
32 * @uml.property name="fdaddress"
33 */
34 private String fdaddress;
35 /**
36 * @uml.property name="fdsourceaddress"
37 */
38 private String fdsourceaddress;
39 /**
40 * @uml.property name="sdconnecttimeout"
41 */
42 private String sdconnecttimeout;
43 /**
44 * @uml.property name="maximumnetworkbuffersize"
45 */
46 private String maximumnetworkbuffersize;
47 //private String heartbeatInterval; Parameter in Dokumentation doppelt vorhanden
48 /**
49 * @uml.property name="pkiencryption"
50 */
51 private String pkiencryption;
52 /**
53 * @uml.property name="pkisignatures"
54 */
55 private String pkisignatures;
56 /**
57 * @uml.property name="pkikeypair"
58 */
59 private String pkikeypair;
60 /**
61 * @uml.property name="pkimasterkey"
62 */
63 private String pkimasterkey;
64
65 public FDClientItem(){}
66 public FDClientItem(String name, String workingDirectory, String pidDirectory){
67 setName(name);
68 setWorkingdirectory(workingdirectory);
69 setPiddirectory(piddirectory);
70 }
71 /**
72 * @return
73 * @uml.property name="name"
74 */
75 public String getName() {
76 return name;
77 }
78 /**
79 * @param name
80 * @uml.property name="name"
81 */
82 public void setName(String name) {
83 this.name = name;
84 }
85 /**
86 * @return
87 * @uml.property name="workingdirectory"
88 */
89 public String getWorkingdirectory() {
90 return workingdirectory;
91 }
92 /**
93 * @param workingdirectory
94 * @uml.property name="workingdirectory"
95 */
96 public void setWorkingdirectory(String workingdirectory) {
97 this.workingdirectory = workingdirectory;
98 }
99 /**
100 * @return
101 * @uml.property name="piddirectory"
102 */
103 public String getPiddirectory() {
104 return piddirectory;
105 }
106 /**
107 * @param piddirectory
108 * @uml.property name="piddirectory"
109 */
110 public void setPiddirectory(String piddirectory) {
111 this.piddirectory = piddirectory;
112 }
113 /**
114 * @return
115 * @uml.property name="heartbeatinterval"
116 */
117 public String getHeartbeatinterval() {
118 return heartbeatinterval;
119 }
120 /**
121 * @param heartbeatinterval
122 * @uml.property name="heartbeatinterval"
123 */
124 public void setHeartbeatinterval(String heartbeatinterval) {
125 this.heartbeatinterval = heartbeatinterval;
126 }
127 /**
128 * @return
129 * @uml.property name="maximumconcurrentjobs"
130 */
131 public String getMaximumconcurrentjobs() {
132 return maximumconcurrentjobs;
133 }
134 /**
135 * @param maximumconcurrentjobs
136 * @uml.property name="maximumconcurrentjobs"
137 */
138 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
139 this.maximumconcurrentjobs = maximumconcurrentjobs;
140 }
141 /**
142 * @return
143 * @uml.property name="fdaddresses"
144 */
145 public String getFdaddresses() {
146 return fdaddresses;
147 }
148 /**
149 * @param fdaddresses
150 * @uml.property name="fdaddresses"
151 */
152 public void setFdaddresses(String fdaddresses) {
153 this.fdaddresses = fdaddresses;
154 }
155 /**
156 * @return
157 * @uml.property name="fdport"
158 */
159 public String getFdport() {
160 return fdport;
161 }
162 /**
163 * @param fdport
164 * @uml.property name="fdport"
165 */
166 public void setFdport(String fdport) {
167 this.fdport = fdport;
168 }
169 /**
170 * @return
171 * @uml.property name="fdaddress"
172 */
173 public String getFdaddress() {
174 return fdaddress;
175 }
176 /**
177 * @param fdaddress
178 * @uml.property name="fdaddress"
179 */
180 public void setFdaddress(String fdaddress) {
181 this.fdaddress = fdaddress;
182 }
183 /**
184 * @return
185 * @uml.property name="fdsourceaddress"
186 */
187 public String getFdsourceaddress() {
188 return fdsourceaddress;
189 }
190 /**
191 * @param fdsourceaddress
192 * @uml.property name="fdsourceaddress"
193 */
194 public void setFdsourceaddress(String fdsourceaddress) {
195 this.fdsourceaddress = fdsourceaddress;
196 }
197 /**
198 * @return
199 * @uml.property name="sdconnecttimeout"
200 */
201 public String getSdconnecttimeout() {
202 return sdconnecttimeout;
203 }
204 /**
205 * @param sdconnecttimeout
206 * @uml.property name="sdconnecttimeout"
207 */
208 public void setSdconnecttimeout(String sdconnecttimeout) {
209 this.sdconnecttimeout = sdconnecttimeout;
210 }
211 /**
212 * @return
213 * @uml.property name="maximumnetworkbuffersize"
214 */
215 public String getMaximumnetworkbuffersize() {
216 return maximumnetworkbuffersize;
217 }
218 /**
219 * @param maximumnetworkbuffersize
220 * @uml.property name="maximumnetworkbuffersize"
221 */
222 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) {
223 this.maximumnetworkbuffersize = maximumnetworkbuffersize;
224 }
225 /**
226 * @return
227 * @uml.property name="pkiencryption"
228 */
229 public String getPkiencryption() {
230 return pkiencryption;
231 }
232 /**
233 * @param pkiencryption
234 * @uml.property name="pkiencryption"
235 */
236 public void setPkiencryption(String pkiencryption) {
237 this.pkiencryption = pkiencryption;
238 }
239 /**
240 * @return
241 * @uml.property name="pkisignatures"
242 */
243 public String getPkisignatures() {
244 return pkisignatures;
245 }
246 /**
247 * @param pkisignatures
248 * @uml.property name="pkisignatures"
249 */
250 public void setPkisignatures(String pkisignatures) {
251 this.pkisignatures = pkisignatures;
252 }
253 /**
254 * @return
255 * @uml.property name="pkikeypair"
256 */
257 public String getPkikeypair() {
258 return pkikeypair;
259 }
260 /**
261 * @param pkikeypair
262 * @uml.property name="pkikeypair"
263 */
264 public void setPkikeypair(String pkikeypair) {
265 this.pkikeypair = pkikeypair;
266 }
267 /**
268 * @return
269 * @uml.property name="pkimasterkey"
270 */
271 public String getPkimasterkey() {
272 return pkimasterkey;
273 }
274 /**
275 * @param pkimasterkey
276 * @uml.property name="pkimasterkey"
277 */
278 public void setPkimasterkey(String pkimasterkey) {
279 this.pkimasterkey = pkimasterkey;
280 }
281
282}
Note: See TracBrowser for help on using the repository browser.