source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDStorageItem.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: 3.6 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class SDStorageItem 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="clientconnectwait"
21 */
22 private String clientconnectwait;
23 /**
24 * @uml.property name="maximumconcurrentjobs"
25 */
26 private String maximumconcurrentjobs;
27 /**
28 * @uml.property name="sdaddresses"
29 */
30 private String sdaddresses;
31 /**
32 * @uml.property name="sdport"
33 */
34 private String sdport;
35 /**
36 * @uml.property name="sdaddress"
37 */
38 private String sdaddress;
39
40 public SDStorageItem() {}
41 public SDStorageItem(String name, String workingDirectory, String pidDirectory) {
42 setName(name);
43 setWorkingdirectory(workingdirectory);
44 setPiddirectory(piddirectory);
45 }
46 /**
47 * @return
48 * @uml.property name="name"
49 */
50 public String getName() {
51 return name;
52 }
53 /**
54 * @param name
55 * @uml.property name="name"
56 */
57 public void setName(String name) {
58 this.name = name;
59 }
60 /**
61 * @return
62 * @uml.property name="workingdirectory"
63 */
64 public String getWorkingdirectory() {
65 return workingdirectory;
66 }
67 /**
68 * @param workingdirectory
69 * @uml.property name="workingdirectory"
70 */
71 public void setWorkingdirectory(String workingdirectory) {
72 this.workingdirectory = workingdirectory;
73 }
74 /**
75 * @return
76 * @uml.property name="piddirectory"
77 */
78 public String getPiddirectory() {
79 return piddirectory;
80 }
81 /**
82 * @param piddirectory
83 * @uml.property name="piddirectory"
84 */
85 public void setPiddirectory(String piddirectory) {
86 this.piddirectory = piddirectory;
87 }
88 /**
89 * @return
90 * @uml.property name="heartbeatinterval"
91 */
92 public String getHeartbeatinterval() {
93 return heartbeatinterval;
94 }
95 /**
96 * @param heartbeatinterval
97 * @uml.property name="heartbeatinterval"
98 */
99 public void setHeartbeatinterval(String heartbeatinterval) {
100 this.heartbeatinterval = heartbeatinterval;
101 }
102 /**
103 * @return
104 * @uml.property name="clientconnectwait"
105 */
106 public String getClientconnectwait() {
107 return clientconnectwait;
108 }
109 /**
110 * @param clientconnectwait
111 * @uml.property name="clientconnectwait"
112 */
113 public void setClientconnectwait(String clientconnectwait) {
114 this.clientconnectwait = clientconnectwait;
115 }
116 /**
117 * @return
118 * @uml.property name="maximumconcurrentjobs"
119 */
120 public String getMaximumconcurrentjobs() {
121 return maximumconcurrentjobs;
122 }
123 /**
124 * @param maximumconcurrentjobs
125 * @uml.property name="maximumconcurrentjobs"
126 */
127 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
128 this.maximumconcurrentjobs = maximumconcurrentjobs;
129 }
130 /**
131 * @return
132 * @uml.property name="sdaddresses"
133 */
134 public String getSdaddresses() {
135 return sdaddresses;
136 }
137 /**
138 * @param sdaddresses
139 * @uml.property name="sdaddresses"
140 */
141 public void setSdaddresses(String sdaddresses) {
142 this.sdaddresses = sdaddresses;
143 }
144 /**
145 * @return
146 * @uml.property name="sdport"
147 */
148 public String getSdport() {
149 return sdport;
150 }
151 /**
152 * @param sdport
153 * @uml.property name="sdport"
154 */
155 public void setSdport(String sdport) {
156 this.sdport = sdport;
157 }
158 /**
159 * @return
160 * @uml.property name="sdaddress"
161 */
162 public String getSdaddress() {
163 return sdaddress;
164 }
165 /**
166 * @param sdaddress
167 * @uml.property name="sdaddress"
168 */
169 public void setSdaddress(String sdaddress) {
170 this.sdaddress = sdaddress;
171 }
172
173
174}
Note: See TracBrowser for help on using the repository browser.