1 | package de.dass_it.vanhelsing.gui.items;
|
---|
2 | public class PoolItem extends ItemType implements UserObjectItem{
|
---|
3 | private String name;
|
---|
4 | private String maximumVolumes;
|
---|
5 | private String poolType;
|
---|
6 | private String storage;
|
---|
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;
|
---|
18 | private String recycle;
|
---|
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;
|
---|
26 |
|
---|
27 | public PoolItem() {}
|
---|
28 |
|
---|
29 | public PoolItem(String name, String poolType){
|
---|
30 | setName(name);
|
---|
31 | setPoolType(poolType);
|
---|
32 | }
|
---|
33 |
|
---|
34 | public String getName() {
|
---|
35 | return name;
|
---|
36 | }
|
---|
37 |
|
---|
38 | public void setName(String name) {
|
---|
39 | this.name = name;
|
---|
40 | }
|
---|
41 |
|
---|
42 | public String getMaximumVolumes() {
|
---|
43 | return maximumVolumes;
|
---|
44 | }
|
---|
45 |
|
---|
46 | public void setMaximumVolumes(String maximumVolumes) {
|
---|
47 | this.maximumVolumes = maximumVolumes;
|
---|
48 | }
|
---|
49 |
|
---|
50 | public String getPoolType() {
|
---|
51 | return poolType;
|
---|
52 | }
|
---|
53 |
|
---|
54 | public void setPoolType(String poolType) {
|
---|
55 | this.poolType = poolType;
|
---|
56 | }
|
---|
57 |
|
---|
58 | public String getStorage() {
|
---|
59 | return storage;
|
---|
60 | }
|
---|
61 |
|
---|
62 | public void setStorage(String storage) {
|
---|
63 | this.storage = storage;
|
---|
64 | }
|
---|
65 |
|
---|
66 | public String getUseVolumeOnce() {
|
---|
67 | return useVolumeOnce;
|
---|
68 | }
|
---|
69 |
|
---|
70 | public void setUseVolumeOnce(String useVolumeOnce) {
|
---|
71 | this.useVolumeOnce = useVolumeOnce;
|
---|
72 | }
|
---|
73 |
|
---|
74 | public String getMaximumVolumeJobs() {
|
---|
75 | return maximumVolumeJobs;
|
---|
76 | }
|
---|
77 |
|
---|
78 | public void setMaximumVolumeJobs(String maximumVolumeJobs) {
|
---|
79 | this.maximumVolumeJobs = maximumVolumeJobs;
|
---|
80 | }
|
---|
81 |
|
---|
82 | public String getMaximumVolumeFiles() {
|
---|
83 | return maximumVolumeFiles;
|
---|
84 | }
|
---|
85 |
|
---|
86 | public void setMaximumVolumeFiles(String maximumVolumeFiles) {
|
---|
87 | this.maximumVolumeFiles = maximumVolumeFiles;
|
---|
88 | }
|
---|
89 |
|
---|
90 | public String getMaximumVolumeBytes() {
|
---|
91 | return maximumVolumeBytes;
|
---|
92 | }
|
---|
93 |
|
---|
94 | public void setMaximumVolumeBytes(String maximumVolumeBytes) {
|
---|
95 | this.maximumVolumeBytes = maximumVolumeBytes;
|
---|
96 | }
|
---|
97 |
|
---|
98 | public String getVolumeUseDuration() {
|
---|
99 | return volumeUseDuration;
|
---|
100 | }
|
---|
101 |
|
---|
102 | public void setVolumeUseDuration(String volumeUseDuration) {
|
---|
103 | this.volumeUseDuration = volumeUseDuration;
|
---|
104 | }
|
---|
105 |
|
---|
106 | public String getCatalogFiles() {
|
---|
107 | return catalogFiles;
|
---|
108 | }
|
---|
109 |
|
---|
110 | public void setCatalogFiles(String catalogFiles) {
|
---|
111 | this.catalogFiles = catalogFiles;
|
---|
112 | }
|
---|
113 |
|
---|
114 | public String getAutoPrune() {
|
---|
115 | return autoPrune;
|
---|
116 | }
|
---|
117 |
|
---|
118 | public void setAutoPrune(String autoPrune) {
|
---|
119 | this.autoPrune = autoPrune;
|
---|
120 | }
|
---|
121 |
|
---|
122 | public String getVolumeRetention() {
|
---|
123 | return volumeRetention;
|
---|
124 | }
|
---|
125 |
|
---|
126 | public void setVolumeRetention(String volumeRetention) {
|
---|
127 | this.volumeRetention = volumeRetention;
|
---|
128 | }
|
---|
129 |
|
---|
130 | public String getActionOnPurge() {
|
---|
131 | return actionOnPurge;
|
---|
132 | }
|
---|
133 |
|
---|
134 | public void setActionOnPurge(String actionOnPurge) {
|
---|
135 | this.actionOnPurge = actionOnPurge;
|
---|
136 | }
|
---|
137 |
|
---|
138 | public String getScratchPool() {
|
---|
139 | return scratchPool;
|
---|
140 | }
|
---|
141 |
|
---|
142 | public void setScratchPool(String scratchPool) {
|
---|
143 | this.scratchPool = scratchPool;
|
---|
144 | }
|
---|
145 |
|
---|
146 | public String getRecyclePool() {
|
---|
147 | return recyclePool;
|
---|
148 | }
|
---|
149 |
|
---|
150 | public void setRecyclePool(String recyclePool) {
|
---|
151 | this.recyclePool = recyclePool;
|
---|
152 | }
|
---|
153 |
|
---|
154 | public String getRecycle() {
|
---|
155 | return recycle;
|
---|
156 | }
|
---|
157 |
|
---|
158 | public void setRecycle(String recycle) {
|
---|
159 | this.recycle = recycle;
|
---|
160 | }
|
---|
161 |
|
---|
162 | public String getRecycleOldestVolume() {
|
---|
163 | return recycleOldestVolume;
|
---|
164 | }
|
---|
165 |
|
---|
166 | public void setRecycleOldestVolume(String recycleOldestVolume) {
|
---|
167 | this.recycleOldestVolume = recycleOldestVolume;
|
---|
168 | }
|
---|
169 |
|
---|
170 | public String getRecycleCurrentVolume() {
|
---|
171 | return recycleCurrentVolume;
|
---|
172 | }
|
---|
173 |
|
---|
174 | public void setRecycleCurrentVolume(String recycleCurrentVolume) {
|
---|
175 | this.recycleCurrentVolume = recycleCurrentVolume;
|
---|
176 | }
|
---|
177 |
|
---|
178 | public String getPurgeOldestVolume() {
|
---|
179 | return purgeOldestVolume;
|
---|
180 | }
|
---|
181 |
|
---|
182 | public void setPurgeOldestVolume(String purgeOldestVolume) {
|
---|
183 | this.purgeOldestVolume = purgeOldestVolume;
|
---|
184 | }
|
---|
185 |
|
---|
186 | public String getFileRetention() {
|
---|
187 | return fileRetention;
|
---|
188 | }
|
---|
189 |
|
---|
190 | public void setFileRetention(String fileRetention) {
|
---|
191 | this.fileRetention = fileRetention;
|
---|
192 | }
|
---|
193 |
|
---|
194 | public String getJobRetention() {
|
---|
195 | return jobRetention;
|
---|
196 | }
|
---|
197 |
|
---|
198 | public void setJobRetention(String jobRetention) {
|
---|
199 | this.jobRetention = jobRetention;
|
---|
200 | }
|
---|
201 |
|
---|
202 | public String getCleaningPrefix() {
|
---|
203 | return cleaningPrefix;
|
---|
204 | }
|
---|
205 |
|
---|
206 | public void setCleaningPrefix(String cleaningPrefix) {
|
---|
207 | this.cleaningPrefix = cleaningPrefix;
|
---|
208 | }
|
---|
209 |
|
---|
210 | public String getLabelFormat() {
|
---|
211 | return labelFormat;
|
---|
212 | }
|
---|
213 |
|
---|
214 | public void setLabelFormat(String labelFormat) {
|
---|
215 | this.labelFormat = labelFormat;
|
---|
216 | }
|
---|
217 | }
|
---|
218 |
|
---|