source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ClientItem.java@ 865

Last change on this file since 865 was 865, checked in by tobias, on Apr 20, 2010 at 5:21:42 PM

comments added
all methods of the wsdl file implemented

File size: 1.8 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class ClientItem extends ItemType implements UserObjectItem{
3
4 private String name;
5 private String address;
6 private String fdport;
7 private String catalog;
8 private String password;
9 private String fileretention;
10 private String jobretention;
11 private String autoprune;
12 private String maximumconcurrentjobs;
13 private String priority;
14
15 public ClientItem() {}
16
17 public String getName() {
18 return name;
19 }
20
21 public void setName(String name) {
22 this.name = name;
23 }
24
25 public String getAddress() {
26 return address;
27 }
28
29 public void setAddress(String address) {
30 this.address = address;
31 }
32
33
34 public String getCatalog() {
35 return catalog;
36 }
37
38 public void setCatalog(String catalog) {
39 this.catalog = catalog;
40 }
41
42 public String getPassword() {
43 return password;
44 }
45
46 public void setPassword(String password) {
47 this.password = password;
48 }
49
50 public String getPriority() {
51 return priority;
52 }
53
54 public void setPriority(String priority) {
55 this.priority = priority;
56 }
57
58 public void setFdport(String fdport) {
59 this.fdport = fdport;
60 }
61
62 public String getFdport() {
63 return fdport;
64 }
65
66 public void setFileretention(String fileretention) {
67 this.fileretention = fileretention;
68 }
69
70 public String getFileretention() {
71 return fileretention;
72 }
73
74 public void setJobretention(String jobretention) {
75 this.jobretention = jobretention;
76 }
77
78 public String getJobretention() {
79 return jobretention;
80 }
81
82 public void setAutoprune(String autoprune) {
83 this.autoprune = autoprune;
84 }
85
86 public String getAutoprune() {
87 return autoprune;
88 }
89
90 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
91 this.maximumconcurrentjobs = maximumconcurrentjobs;
92 }
93
94 public String getMaximumconcurrentjobs() {
95 return maximumconcurrentjobs;
96 }
97
98}
Note: See TracBrowser for help on using the repository browser.