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