source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConsoleItem.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.8 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class ConsoleItem extends ItemType implements UserObjectItem{
3 /**
4 * @uml.property name="name"
5 */
6 private String name;
7 /**
8 * @uml.property name="password"
9 */
10 private String password;
11 /**
12 * @uml.property name="jobacl"
13 */
14 private String jobacl;
15 /**
16 * @uml.property name="clientacl"
17 */
18 private String clientacl;
19 /**
20 * @uml.property name="storageacl"
21 */
22 private String storageacl;
23 /**
24 * @uml.property name="scheduleacl"
25 */
26 private String scheduleacl;
27 /**
28 * @uml.property name="poolacl"
29 */
30 private String poolacl;
31 /**
32 * @uml.property name="fileSetacl"
33 */
34 private String fileSetacl;
35 /**
36 * @uml.property name="catalogacl"
37 */
38 private String catalogacl;
39 /**
40 * @uml.property name="commandacl"
41 */
42 private String commandacl;
43 /**
44 * @uml.property name="whereacl"
45 */
46 private String whereacl;
47
48 public ConsoleItem(){}
49
50 public ConsoleItem(String name, String password){
51 setName(name);
52 setPassword(password);
53 }
54
55 /**
56 * @return
57 * @uml.property name="name"
58 */
59 public String getName() {
60 return name;
61 }
62
63 /**
64 * @param name
65 * @uml.property name="name"
66 */
67 public void setName(String name) {
68 this.name = name;
69 }
70
71 /**
72 * @return
73 * @uml.property name="password"
74 */
75 public String getPassword() {
76 return password;
77 }
78
79 /**
80 * @param password
81 * @uml.property name="password"
82 */
83 public void setPassword(String password) {
84 this.password = password;
85 }
86
87 /**
88 * @return
89 * @uml.property name="jobacl"
90 */
91 public String getJobacl() {
92 return jobacl;
93 }
94
95 /**
96 * @param jobacl
97 * @uml.property name="jobacl"
98 */
99 public void setJobacl(String jobacl) {
100 this.jobacl = jobacl;
101 }
102
103 /**
104 * @return
105 * @uml.property name="clientacl"
106 */
107 public String getClientacl() {
108 return clientacl;
109 }
110
111 /**
112 * @param clientacl
113 * @uml.property name="clientacl"
114 */
115 public void setClientacl(String clientacl) {
116 this.clientacl = clientacl;
117 }
118
119 /**
120 * @return
121 * @uml.property name="storageacl"
122 */
123 public String getStorageacl() {
124 return storageacl;
125 }
126
127 /**
128 * @param storageacl
129 * @uml.property name="storageacl"
130 */
131 public void setStorageacl(String storageacl) {
132 this.storageacl = storageacl;
133 }
134
135 /**
136 * @return
137 * @uml.property name="scheduleacl"
138 */
139 public String getScheduleacl() {
140 return scheduleacl;
141 }
142
143 /**
144 * @param scheduleacl
145 * @uml.property name="scheduleacl"
146 */
147 public void setScheduleacl(String scheduleacl) {
148 this.scheduleacl = scheduleacl;
149 }
150
151 /**
152 * @return
153 * @uml.property name="poolacl"
154 */
155 public String getPoolacl() {
156 return poolacl;
157 }
158
159 /**
160 * @param poolacl
161 * @uml.property name="poolacl"
162 */
163 public void setPoolacl(String poolacl) {
164 this.poolacl = poolacl;
165 }
166
167 /**
168 * @return
169 * @uml.property name="fileSetacl"
170 */
171 public String getFileSetacl() {
172 return fileSetacl;
173 }
174
175 /**
176 * @param fileSetacl
177 * @uml.property name="fileSetacl"
178 */
179 public void setFileSetacl(String fileSetacl) {
180 this.fileSetacl = fileSetacl;
181 }
182
183 /**
184 * @return
185 * @uml.property name="catalogacl"
186 */
187 public String getCatalogacl() {
188 return catalogacl;
189 }
190
191 /**
192 * @param catalogacl
193 * @uml.property name="catalogacl"
194 */
195 public void setCatalogacl(String catalogacl) {
196 this.catalogacl = catalogacl;
197 }
198
199 /**
200 * @return
201 * @uml.property name="commandacl"
202 */
203 public String getCommandacl() {
204 return commandacl;
205 }
206
207 /**
208 * @param commandacl
209 * @uml.property name="commandacl"
210 */
211 public void setCommandacl(String commandacl) {
212 this.commandacl = commandacl;
213 }
214
215 /**
216 * @return
217 * @uml.property name="whereacl"
218 */
219 public String getWhereacl() {
220 return whereacl;
221 }
222
223 /**
224 * @param whereacl
225 * @uml.property name="whereacl"
226 */
227 public void setWhereacl(String whereacl) {
228 this.whereacl = whereacl;
229 }
230
231}
Note: See TracBrowser for help on using the repository browser.