source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/PoolItem.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: 4.5 KB
RevLine 
[832]1package de.dass_it.vanhelsing.gui.items;
[844]2public class PoolItem extends ItemType implements UserObjectItem{
[832]3 private String name;
[858]4 private String maximumvolumes;
5 private String pooltype;
[832]6 private String storage;
[858]7 private String usevolumeonce;
8 private String maximumvolumejobs;
9 private String maximumvolumefiles;
10 private String maximumvolumebytes;
11 private String volumeuseduration;
12 private String catalogfiles;
13 private String autoprune;
14 private String volumeretention;
15 private String actiononpurge;
16 private String scratchpool;
17 private String recyclepool;
[832]18 private String recycle;
[858]19 private String recycleoldestvolume;
20 private String recyclecurrentvolume;
21 private String purgeoldestvolume;
22 private String fileretention;
23 private String jobretention;
24 private String cleaningprefix;
25 private String labelformat;
[832]26
27 public PoolItem() {}
28
[858]29 public PoolItem(String name, String pooltype){
[832]30 setName(name);
[858]31 setPooltype(pooltype);
[832]32 }
33
34 public String getName() {
35 return name;
36 }
37
38 public void setName(String name) {
39 this.name = name;
40 }
41
[858]42 public String getMaximumvolumes() {
43 return maximumvolumes;
[832]44 }
45
[858]46 public void setMaximumvolumes(String maximumvolumes) {
47 this.maximumvolumes = maximumvolumes;
[832]48 }
49
[858]50 public String getPooltype() {
51 return pooltype;
[832]52 }
53
[858]54 public void setPooltype(String pooltype) {
55 this.pooltype = pooltype;
[832]56 }
57
58 public String getStorage() {
59 return storage;
60 }
61
62 public void setStorage(String storage) {
63 this.storage = storage;
64 }
65
[858]66 public String getUsevolumeonce() {
67 return usevolumeonce;
[832]68 }
69
[858]70 public void setUsevolumeonce(String usevolumeonce) {
71 this.usevolumeonce = usevolumeonce;
[832]72 }
73
[858]74 public String getMaximumvolumejobs() {
75 return maximumvolumejobs;
[832]76 }
77
[858]78 public void setMaximumvolumejobs(String maximumvolumejobs) {
79 this.maximumvolumejobs = maximumvolumejobs;
[832]80 }
81
[858]82 public String getMaximumvolumefiles() {
83 return maximumvolumefiles;
[832]84 }
85
[858]86 public void setMaximumvolumefiles(String maximumvolumefiles) {
87 this.maximumvolumefiles = maximumvolumefiles;
[832]88 }
89
[858]90 public String getMaximumvolumebytes() {
91 return maximumvolumebytes;
[832]92 }
93
[858]94 public void setMaximumvolumebytes(String maximumvolumebytes) {
95 this.maximumvolumebytes = maximumvolumebytes;
[832]96 }
97
[858]98 public String getVolumeuseduration() {
99 return volumeuseduration;
[832]100 }
101
[858]102 public void setVolumeuseduration(String volumeuseduration) {
103 this.volumeuseduration = volumeuseduration;
[832]104 }
105
[858]106 public String getCatalogfiles() {
107 return catalogfiles;
[832]108 }
109
[858]110 public void setCatalogfiles(String catalogfiles) {
111 this.catalogfiles = catalogfiles;
[832]112 }
113
[858]114 public String getAutoprune() {
115 return autoprune;
[832]116 }
117
[858]118 public void setAutoprune(String autoprune) {
119 this.autoprune = autoprune;
[832]120 }
121
[858]122 public String getVolumeretention() {
123 return volumeretention;
[832]124 }
125
[858]126 public void setVolumeretention(String volumeretention) {
127 this.volumeretention = volumeretention;
[832]128 }
129
[858]130 public String getActiononpurge() {
131 return actiononpurge;
[832]132 }
133
[858]134 public void setActiononpurge(String actiononpurge) {
135 this.actiononpurge = actiononpurge;
[832]136 }
137
[858]138 public String getScratchpool() {
139 return scratchpool;
[832]140 }
141
[858]142 public void setScratchpool(String scratchpool) {
143 this.scratchpool = scratchpool;
[832]144 }
145
[858]146 public String getRecyclepool() {
147 return recyclepool;
[832]148 }
149
[858]150 public void setRecyclepool(String recyclepool) {
151 this.recyclepool = recyclepool;
[832]152 }
153
154 public String getRecycle() {
155 return recycle;
156 }
157
158 public void setRecycle(String recycle) {
159 this.recycle = recycle;
160 }
161
[858]162 public String getRecycleoldestvolume() {
163 return recycleoldestvolume;
[832]164 }
165
[858]166 public void setRecycleoldestvolume(String recycleoldestvolume) {
167 this.recycleoldestvolume = recycleoldestvolume;
[832]168 }
169
[858]170 public String getRecyclecurrentvolume() {
171 return recyclecurrentvolume;
[832]172 }
173
[858]174 public void setRecyclecurrentvolume(String recyclecurrentvolume) {
175 this.recyclecurrentvolume = recyclecurrentvolume;
[832]176 }
177
[858]178 public String getPurgeoldestvolume() {
179 return purgeoldestvolume;
[832]180 }
181
[858]182 public void setPurgeoldestvolume(String purgeoldestvolume) {
183 this.purgeoldestvolume = purgeoldestvolume;
[832]184 }
185
[858]186 public String getFileretention() {
187 return fileretention;
[832]188 }
189
[858]190 public void setFileretention(String fileretention) {
191 this.fileretention = fileretention;
[832]192 }
193
[858]194 public String getJobretention() {
195 return jobretention;
[832]196 }
197
[858]198 public void setJobretention(String jobretention) {
199 this.jobretention = jobretention;
[832]200 }
201
[858]202 public String getCleaningprefix() {
203 return cleaningprefix;
[832]204 }
205
[858]206 public void setCleaningprefix(String cleaningprefix) {
207 this.cleaningprefix = cleaningprefix;
[832]208 }
209
[858]210 public String getLabelformat() {
211 return labelformat;
[832]212 }
213
[858]214 public void setLabelformat(String labelformat) {
215 this.labelformat = labelformat;
[832]216 }
217}
218
Note: See TracBrowser for help on using the repository browser.