source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ClientItem.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.5 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class ClientItem extends ItemType implements UserObjectItem{
3
4 /**
5 * @uml.property name="name"
6 */
7 private String name;
8 /**
9 * @uml.property name="address"
10 */
11 private String address;
12 /**
13 * @uml.property name="fdport"
14 */
15 private String fdport;
16 /**
17 * @uml.property name="catalog"
18 */
19 private String catalog;
20 /**
21 * @uml.property name="password"
22 */
23 private String password;
24 /**
25 * @uml.property name="fileretention"
26 */
27 private String fileretention;
28 /**
29 * @uml.property name="jobretention"
30 */
31 private String jobretention;
32 /**
33 * @uml.property name="autoprune"
34 */
35 private String autoprune;
36 /**
37 * @uml.property name="maximumconcurrentjobs"
38 */
39 private String maximumconcurrentjobs;
40 /**
41 * @uml.property name="priority"
42 */
43 private String priority;
44
45 public ClientItem() {}
46
47 /**
48 * @return
49 * @uml.property name="name"
50 */
51 public String getName() {
52 return name;
53 }
54
55 /**
56 * @param name
57 * @uml.property name="name"
58 */
59 public void setName(String name) {
60 this.name = name;
61 }
62
63 /**
64 * @return
65 * @uml.property name="address"
66 */
67 public String getAddress() {
68 return address;
69 }
70
71 /**
72 * @param address
73 * @uml.property name="address"
74 */
75 public void setAddress(String address) {
76 this.address = address;
77 }
78
79
80 /**
81 * @return
82 * @uml.property name="catalog"
83 */
84 public String getCatalog() {
85 return catalog;
86 }
87
88 /**
89 * @param catalog
90 * @uml.property name="catalog"
91 */
92 public void setCatalog(String catalog) {
93 this.catalog = catalog;
94 }
95
96 /**
97 * @return
98 * @uml.property name="password"
99 */
100 public String getPassword() {
101 return password;
102 }
103
104 /**
105 * @param password
106 * @uml.property name="password"
107 */
108 public void setPassword(String password) {
109 this.password = password;
110 }
111
112 /**
113 * @return
114 * @uml.property name="priority"
115 */
116 public String getPriority() {
117 return priority;
118 }
119
120 /**
121 * @param priority
122 * @uml.property name="priority"
123 */
124 public void setPriority(String priority) {
125 this.priority = priority;
126 }
127
128 /**
129 * @param fdport
130 * @uml.property name="fdport"
131 */
132 public void setFdport(String fdport) {
133 this.fdport = fdport;
134 }
135
136 /**
137 * @return
138 * @uml.property name="fdport"
139 */
140 public String getFdport() {
141 return fdport;
142 }
143
144 /**
145 * @param fileretention
146 * @uml.property name="fileretention"
147 */
148 public void setFileretention(String fileretention) {
149 this.fileretention = fileretention;
150 }
151
152 /**
153 * @return
154 * @uml.property name="fileretention"
155 */
156 public String getFileretention() {
157 return fileretention;
158 }
159
160 /**
161 * @param jobretention
162 * @uml.property name="jobretention"
163 */
164 public void setJobretention(String jobretention) {
165 this.jobretention = jobretention;
166 }
167
168 /**
169 * @return
170 * @uml.property name="jobretention"
171 */
172 public String getJobretention() {
173 return jobretention;
174 }
175
176 /**
177 * @param autoprune
178 * @uml.property name="autoprune"
179 */
180 public void setAutoprune(String autoprune) {
181 this.autoprune = autoprune;
182 }
183
184 /**
185 * @return
186 * @uml.property name="autoprune"
187 */
188 public String getAutoprune() {
189 return autoprune;
190 }
191
192 /**
193 * @param maximumconcurrentjobs
194 * @uml.property name="maximumconcurrentjobs"
195 */
196 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
197 this.maximumconcurrentjobs = maximumconcurrentjobs;
198 }
199
200 /**
201 * @return
202 * @uml.property name="maximumconcurrentjobs"
203 */
204 public String getMaximumconcurrentjobs() {
205 return maximumconcurrentjobs;
206 }
207
208}
Note: See TracBrowser for help on using the repository browser.