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