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

Last change on this file since 844 was 844, checked in by tobias, on Mar 18, 2010 at 6:52:29 PM

all libraries moved to WEB-INF/lib

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 public String getFdPort() {
34 return fdPort;
35 }
36
37 public void setFdPort(String fdPort) {
38 this.fdPort = fdPort;
39 }
40
41 public String getCatalog() {
42 return catalog;
43 }
44
45 public void setCatalog(String catalog) {
46 this.catalog = catalog;
47 }
48
49 public String getPassword() {
50 return password;
51 }
52
53 public void setPassword(String password) {
54 this.password = password;
55 }
56
57 public String getFileRetention() {
58 return fileRetention;
59 }
60
61 public void setFileRetention(String fileRetention) {
62 this.fileRetention = fileRetention;
63 }
64
65 public String getJobRetention() {
66 return jobRetention;
67 }
68
69 public void setJobRetention(String jobRetention) {
70 this.jobRetention = jobRetention;
71 }
72
73 public String getAutoPrune() {
74 return autoPrune;
75 }
76
77 public void setAutoPrune(String autoPrune) {
78 this.autoPrune = autoPrune;
79 }
80
81 public String getMaximumConcurrentJobs() {
82 return maximumConcurrentJobs;
83 }
84
85 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
86 this.maximumConcurrentJobs = maximumConcurrentJobs;
87 }
88
89 public String getPriority() {
90 return priority;
91 }
92
93 public void setPriority(String priority) {
94 this.priority = priority;
95 }
96
97}
Note: See TracBrowser for help on using the repository browser.