source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobItem.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: 22.8 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class JobItem extends ItemType implements UserObjectItem{
3
4 /**
5 * @uml.property name="name"
6 */
7 private String name;
8 /**
9 * @uml.property name="enabled"
10 */
11 private String enabled;
12 /**
13 * @uml.property name="description"
14 */
15 private String description;
16 /**
17 * @uml.property name="type"
18 */
19 private String type;
20 /**
21 * @uml.property name="level"
22 */
23 private String level;
24 /**
25 * @uml.property name="accurate"
26 */
27 private String accurate;
28 /**
29 * @uml.property name="verifyjob"
30 */
31 private String verifyjob;
32 /**
33 * @uml.property name="jobdefs"
34 */
35 private String jobdefs;
36 /**
37 * @uml.property name="bootstrap"
38 */
39 private String bootstrap;
40 /**
41 * @uml.property name="writebootstrap"
42 */
43 private String writebootstrap;
44 /**
45 * @uml.property name="client"
46 */
47 private String client;
48 /**
49 * @uml.property name="fileset"
50 */
51 private String fileset;
52 /**
53 * @uml.property name="messages"
54 */
55 private String messages;
56 /**
57 * @uml.property name="pool"
58 */
59 private String pool;
60 /**
61 * @uml.property name="fullbackuppool"
62 */
63 private String fullbackuppool;
64 /**
65 * @uml.property name="differentialbackuppool"
66 */
67 private String differentialbackuppool;
68 /**
69 * @uml.property name="incrementalbackuppool"
70 */
71 private String incrementalbackuppool;
72 /**
73 * @uml.property name="schedule"
74 */
75 private String schedule;
76 /**
77 * @uml.property name="storage"
78 */
79 private String storage;
80 /**
81 * @uml.property name="maxstartdelay"
82 */
83 private String maxstartdelay;
84 /**
85 * @uml.property name="maxruntime"
86 */
87 private String maxruntime;
88 /**
89 * @uml.property name="incrementaldifferentialmaxwaittime"
90 */
91 private String incrementaldifferentialmaxwaittime;
92 /**
93 * @uml.property name="incrementalmaxruntime"
94 */
95 private String incrementalmaxruntime;
96 /**
97 * @uml.property name="differentialmaxwaittime"
98 */
99 private String differentialmaxwaittime;
100 /**
101 * @uml.property name="maxrunschedtime"
102 */
103 private String maxrunschedtime;
104 /**
105 * @uml.property name="maxwaittime"
106 */
107 private String maxwaittime;
108 /**
109 * @uml.property name="maxfullinterval"
110 */
111 private String maxfullinterval;
112 /**
113 * @uml.property name="prefermountedvolumes"
114 */
115 private String prefermountedvolumes;
116 /**
117 * @uml.property name="prunejobs"
118 */
119 private String prunejobs;
120 /**
121 * @uml.property name="prunefiles"
122 */
123 private String prunefiles;
124 /**
125 * @uml.property name="prunevolumes"
126 */
127 private String prunevolumes;
128 /**
129 * @uml.property name="runscript"
130 */
131 private String runscript;
132 /**
133 * @uml.property name="runbeforejob"
134 */
135 private String runbeforejob;
136 /**
137 * @uml.property name="runafterjob"
138 */
139 private String runafterjob;
140 /**
141 * @uml.property name="runafterfailedjob"
142 */
143 private String runafterfailedjob;
144 /**
145 * @uml.property name="clientrunbeforejob"
146 */
147 private String clientrunbeforejob;
148 /**
149 * @uml.property name="clientrunafterjob"
150 */
151 private String clientrunafterjob;
152 /**
153 * @uml.property name="rerunfailedlevels"
154 */
155 private String rerunfailedlevels;
156 /**
157 * @uml.property name="spooldata"
158 */
159 private String spooldata;
160 /**
161 * @uml.property name="spoolattributes"
162 */
163 private String spoolattributes;
164 /**
165 * @uml.property name="where"
166 */
167 private String where;
168 /**
169 * @uml.property name="addprefix"
170 */
171 private String addprefix;
172 /**
173 * @uml.property name="addsuffix"
174 */
175 private String addsuffix;
176 /**
177 * @uml.property name="stripprefix"
178 */
179 private String stripprefix;
180 /**
181 * @uml.property name="regexwhere"
182 */
183 private String regexwhere;
184 /**
185 * @uml.property name="replace"
186 */
187 private String replace;
188 /**
189 * @uml.property name="prefixlinks"
190 */
191 private String prefixlinks;
192 /**
193 * @uml.property name="maximumconcurrentjobs"
194 */
195 private String maximumconcurrentjobs;
196 /**
197 * @uml.property name="rescheduleonerror"
198 */
199 private String rescheduleonerror;
200 /**
201 * @uml.property name="rescheduleinterval"
202 */
203 private String rescheduleinterval;
204 /**
205 * @uml.property name="rescheduletimes"
206 */
207 private String rescheduletimes;
208 /**
209 * @uml.property name="allowduplicatejobs"
210 */
211 private String allowduplicatejobs;
212 /**
213 * @uml.property name="allowhigherduplicates"
214 */
215 private String allowhigherduplicates;
216 /**
217 * @uml.property name="cancellowerlevelduplicates"
218 */
219 private String cancellowerlevelduplicates;
220 /**
221 * @uml.property name="cancelqueuedduplicates"
222 */
223 private String cancelqueuedduplicates;
224 /**
225 * @uml.property name="cancelrunningduplicates"
226 */
227 private String cancelrunningduplicates;
228 /**
229 * @uml.property name="duplicatejobproximity"
230 */
231 private String duplicatejobproximity;
232 /**
233 * @uml.property name="run"
234 */
235 private String run;
236 /**
237 * @uml.property name="priority"
238 */
239 private String priority;
240 /**
241 * @uml.property name="allowmixedpriority"
242 */
243 private String allowmixedpriority;
244 /**
245 * @uml.property name="writepartafterjob"
246 */
247 private String writepartafterjob;
248
249 public JobItem() {}
250 public JobItem(String name, String client, String type, String level, String fileset, String schedule,
251 String messages, String pool, String storage, String priority, String writebootstrap){
252 }
253 /**
254 * @return
255 * @uml.property name="name"
256 */
257 public String getName() {
258 return name;
259 }
260 /**
261 * @param name
262 * @uml.property name="name"
263 */
264 public void setName(String name) {
265 this.name = name;
266 }
267 /**
268 * @return
269 * @uml.property name="enabled"
270 */
271 public String getEnabled() {
272 return enabled;
273 }
274 /**
275 * @param enabled
276 * @uml.property name="enabled"
277 */
278 public void setEnabled(String enabled) {
279 this.enabled = enabled;
280 }
281 /**
282 * @return
283 * @uml.property name="description"
284 */
285 public String getDescription() {
286 return description;
287 }
288 /**
289 * @param description
290 * @uml.property name="description"
291 */
292 public void setDescription(String description) {
293 this.description = description;
294 }
295 /**
296 * @return
297 * @uml.property name="type"
298 */
299 public String getType() {
300 return type;
301 }
302 /**
303 * @param type
304 * @uml.property name="type"
305 */
306 public void setType(String type) {
307 this.type = type;
308 }
309 /**
310 * @return
311 * @uml.property name="level"
312 */
313 public String getLevel() {
314 return level;
315 }
316 /**
317 * @param level
318 * @uml.property name="level"
319 */
320 public void setLevel(String level) {
321 this.level = level;
322 }
323 /**
324 * @return
325 * @uml.property name="accurate"
326 */
327 public String getAccurate() {
328 return accurate;
329 }
330 /**
331 * @param accurate
332 * @uml.property name="accurate"
333 */
334 public void setAccurate(String accurate) {
335 this.accurate = accurate;
336 }
337 /**
338 * @return
339 * @uml.property name="verifyjob"
340 */
341 public String getVerifyjob() {
342 return verifyjob;
343 }
344 /**
345 * @param verifyjob
346 * @uml.property name="verifyjob"
347 */
348 public void setVerifyjob(String verifyjob) {
349 this.verifyjob = verifyjob;
350 }
351 /**
352 * @return
353 * @uml.property name="jobdefs"
354 */
355 public String getJobdefs() {
356 return jobdefs;
357 }
358 /**
359 * @param jobdefs
360 * @uml.property name="jobdefs"
361 */
362 public void setJobdefs(String jobdefs) {
363 this.jobdefs = jobdefs;
364 }
365 /**
366 * @return
367 * @uml.property name="bootstrap"
368 */
369 public String getBootstrap() {
370 return bootstrap;
371 }
372 /**
373 * @param bootstrap
374 * @uml.property name="bootstrap"
375 */
376 public void setBootstrap(String bootstrap) {
377 this.bootstrap = bootstrap;
378 }
379 /**
380 * @return
381 * @uml.property name="writebootstrap"
382 */
383 public String getWritebootstrap() {
384 return writebootstrap;
385 }
386 /**
387 * @param writebootstrap
388 * @uml.property name="writebootstrap"
389 */
390 public void setWritebootstrap(String writebootstrap) {
391 this.writebootstrap = writebootstrap;
392 }
393 /**
394 * @return
395 * @uml.property name="client"
396 */
397 public String getClient() {
398 return client;
399 }
400 /**
401 * @param client
402 * @uml.property name="client"
403 */
404 public void setClient(String client) {
405 this.client = client;
406 }
407 /**
408 * @return
409 * @uml.property name="fileset"
410 */
411 public String getFileset() {
412 return fileset;
413 }
414 /**
415 * @param fileset
416 * @uml.property name="fileset"
417 */
418 public void setFileset(String fileset) {
419 this.fileset = fileset;
420 }
421 /**
422 * @return
423 * @uml.property name="messages"
424 */
425 public String getMessages() {
426 return messages;
427 }
428 /**
429 * @param messages
430 * @uml.property name="messages"
431 */
432 public void setMessages(String messages) {
433 this.messages = messages;
434 }
435 /**
436 * @return
437 * @uml.property name="pool"
438 */
439 public String getPool() {
440 return pool;
441 }
442 /**
443 * @param pool
444 * @uml.property name="pool"
445 */
446 public void setPool(String pool) {
447 this.pool = pool;
448 }
449 /**
450 * @return
451 * @uml.property name="fullbackuppool"
452 */
453 public String getFullbackuppool() {
454 return fullbackuppool;
455 }
456 /**
457 * @param fullbackuppool
458 * @uml.property name="fullbackuppool"
459 */
460 public void setFullbackuppool(String fullbackuppool) {
461 this.fullbackuppool = fullbackuppool;
462 }
463 /**
464 * @return
465 * @uml.property name="differentialbackuppool"
466 */
467 public String getDifferentialbackuppool() {
468 return differentialbackuppool;
469 }
470 /**
471 * @param differentialbackuppool
472 * @uml.property name="differentialbackuppool"
473 */
474 public void setDifferentialbackuppool(String differentialbackuppool) {
475 this.differentialbackuppool = differentialbackuppool;
476 }
477 /**
478 * @return
479 * @uml.property name="incrementalbackuppool"
480 */
481 public String getIncrementalbackuppool() {
482 return incrementalbackuppool;
483 }
484 /**
485 * @param incrementalbackuppool
486 * @uml.property name="incrementalbackuppool"
487 */
488 public void setIncrementalbackuppool(String incrementalbackuppool) {
489 this.incrementalbackuppool = incrementalbackuppool;
490 }
491 /**
492 * @return
493 * @uml.property name="schedule"
494 */
495 public String getSchedule() {
496 return schedule;
497 }
498 /**
499 * @param schedule
500 * @uml.property name="schedule"
501 */
502 public void setSchedule(String schedule) {
503 this.schedule = schedule;
504 }
505 /**
506 * @return
507 * @uml.property name="storage"
508 */
509 public String getStorage() {
510 return storage;
511 }
512 /**
513 * @param storage
514 * @uml.property name="storage"
515 */
516 public void setStorage(String storage) {
517 this.storage = storage;
518 }
519 /**
520 * @return
521 * @uml.property name="maxstartdelay"
522 */
523 public String getMaxstartdelay() {
524 return maxstartdelay;
525 }
526 /**
527 * @param maxstartdelay
528 * @uml.property name="maxstartdelay"
529 */
530 public void setMaxstartdelay(String maxstartdelay) {
531 this.maxstartdelay = maxstartdelay;
532 }
533 /**
534 * @return
535 * @uml.property name="maxruntime"
536 */
537 public String getMaxruntime() {
538 return maxruntime;
539 }
540 /**
541 * @param maxruntime
542 * @uml.property name="maxruntime"
543 */
544 public void setMaxruntime(String maxruntime) {
545 this.maxruntime = maxruntime;
546 }
547 /**
548 * @return
549 * @uml.property name="incrementaldifferentialmaxwaittime"
550 */
551 public String getIncrementaldifferentialmaxwaittime() {
552 return incrementaldifferentialmaxwaittime;
553 }
554 /**
555 * @param incrementaldifferentialmaxwaittime
556 * @uml.property name="incrementaldifferentialmaxwaittime"
557 */
558 public void setIncrementaldifferentialmaxwaittime(
559 String incrementaldifferentialmaxwaittime) {
560 this.incrementaldifferentialmaxwaittime = incrementaldifferentialmaxwaittime;
561 }
562 /**
563 * @return
564 * @uml.property name="incrementalmaxruntime"
565 */
566 public String getIncrementalmaxruntime() {
567 return incrementalmaxruntime;
568 }
569 /**
570 * @param incrementalmaxruntime
571 * @uml.property name="incrementalmaxruntime"
572 */
573 public void setIncrementalmaxruntime(String incrementalmaxruntime) {
574 this.incrementalmaxruntime = incrementalmaxruntime;
575 }
576 /**
577 * @return
578 * @uml.property name="differentialmaxwaittime"
579 */
580 public String getDifferentialmaxwaittime() {
581 return differentialmaxwaittime;
582 }
583 /**
584 * @param differentialmaxwaittime
585 * @uml.property name="differentialmaxwaittime"
586 */
587 public void setDifferentialmaxwaittime(String differentialmaxwaittime) {
588 this.differentialmaxwaittime = differentialmaxwaittime;
589 }
590 /**
591 * @return
592 * @uml.property name="maxrunschedtime"
593 */
594 public String getMaxrunschedtime() {
595 return maxrunschedtime;
596 }
597 /**
598 * @param maxrunschedtime
599 * @uml.property name="maxrunschedtime"
600 */
601 public void setMaxrunschedtime(String maxrunschedtime) {
602 this.maxrunschedtime = maxrunschedtime;
603 }
604 /**
605 * @return
606 * @uml.property name="maxwaittime"
607 */
608 public String getMaxwaittime() {
609 return maxwaittime;
610 }
611 /**
612 * @param maxwaittime
613 * @uml.property name="maxwaittime"
614 */
615 public void setMaxwaittime(String maxwaittime) {
616 this.maxwaittime = maxwaittime;
617 }
618 /**
619 * @return
620 * @uml.property name="maxfullinterval"
621 */
622 public String getMaxfullinterval() {
623 return maxfullinterval;
624 }
625 /**
626 * @param maxfullinterval
627 * @uml.property name="maxfullinterval"
628 */
629 public void setMaxfullinterval(String maxfullinterval) {
630 this.maxfullinterval = maxfullinterval;
631 }
632 /**
633 * @return
634 * @uml.property name="prefermountedvolumes"
635 */
636 public String getPrefermountedvolumes() {
637 return prefermountedvolumes;
638 }
639 /**
640 * @param prefermountedvolumes
641 * @uml.property name="prefermountedvolumes"
642 */
643 public void setPrefermountedvolumes(String prefermountedvolumes) {
644 this.prefermountedvolumes = prefermountedvolumes;
645 }
646 /**
647 * @return
648 * @uml.property name="prunejobs"
649 */
650 public String getPrunejobs() {
651 return prunejobs;
652 }
653 /**
654 * @param prunejobs
655 * @uml.property name="prunejobs"
656 */
657 public void setPrunejobs(String prunejobs) {
658 this.prunejobs = prunejobs;
659 }
660 /**
661 * @return
662 * @uml.property name="prunefiles"
663 */
664 public String getPrunefiles() {
665 return prunefiles;
666 }
667 /**
668 * @param prunefiles
669 * @uml.property name="prunefiles"
670 */
671 public void setPrunefiles(String prunefiles) {
672 this.prunefiles = prunefiles;
673 }
674 /**
675 * @return
676 * @uml.property name="prunevolumes"
677 */
678 public String getPrunevolumes() {
679 return prunevolumes;
680 }
681 /**
682 * @param prunevolumes
683 * @uml.property name="prunevolumes"
684 */
685 public void setPrunevolumes(String prunevolumes) {
686 this.prunevolumes = prunevolumes;
687 }
688 /**
689 * @return
690 * @uml.property name="runscript"
691 */
692 public String getRunscript() {
693 return runscript;
694 }
695 /**
696 * @param runscript
697 * @uml.property name="runscript"
698 */
699 public void setRunscript(String runscript) {
700 this.runscript = runscript;
701 }
702 /**
703 * @return
704 * @uml.property name="runbeforejob"
705 */
706 public String getRunbeforejob() {
707 return runbeforejob;
708 }
709 /**
710 * @param runbeforejob
711 * @uml.property name="runbeforejob"
712 */
713 public void setRunbeforejob(String runbeforejob) {
714 this.runbeforejob = runbeforejob;
715 }
716 /**
717 * @return
718 * @uml.property name="runafterjob"
719 */
720 public String getRunafterjob() {
721 return runafterjob;
722 }
723 /**
724 * @param runafterjob
725 * @uml.property name="runafterjob"
726 */
727 public void setRunafterjob(String runafterjob) {
728 this.runafterjob = runafterjob;
729 }
730 /**
731 * @return
732 * @uml.property name="runafterfailedjob"
733 */
734 public String getRunafterfailedjob() {
735 return runafterfailedjob;
736 }
737 /**
738 * @param runafterfailedjob
739 * @uml.property name="runafterfailedjob"
740 */
741 public void setRunafterfailedjob(String runafterfailedjob) {
742 this.runafterfailedjob = runafterfailedjob;
743 }
744 /**
745 * @return
746 * @uml.property name="clientrunbeforejob"
747 */
748 public String getClientrunbeforejob() {
749 return clientrunbeforejob;
750 }
751 /**
752 * @param clientrunbeforejob
753 * @uml.property name="clientrunbeforejob"
754 */
755 public void setClientrunbeforejob(String clientrunbeforejob) {
756 this.clientrunbeforejob = clientrunbeforejob;
757 }
758 /**
759 * @return
760 * @uml.property name="clientrunafterjob"
761 */
762 public String getClientrunafterjob() {
763 return clientrunafterjob;
764 }
765 /**
766 * @param clientrunafterjob
767 * @uml.property name="clientrunafterjob"
768 */
769 public void setClientrunafterjob(String clientrunafterjob) {
770 this.clientrunafterjob = clientrunafterjob;
771 }
772 /**
773 * @return
774 * @uml.property name="rerunfailedlevels"
775 */
776 public String getRerunfailedlevels() {
777 return rerunfailedlevels;
778 }
779 /**
780 * @param rerunfailedlevels
781 * @uml.property name="rerunfailedlevels"
782 */
783 public void setRerunfailedlevels(String rerunfailedlevels) {
784 this.rerunfailedlevels = rerunfailedlevels;
785 }
786 /**
787 * @return
788 * @uml.property name="spooldata"
789 */
790 public String getSpooldata() {
791 return spooldata;
792 }
793 /**
794 * @param spooldata
795 * @uml.property name="spooldata"
796 */
797 public void setSpooldata(String spooldata) {
798 this.spooldata = spooldata;
799 }
800 /**
801 * @return
802 * @uml.property name="spoolattributes"
803 */
804 public String getSpoolattributes() {
805 return spoolattributes;
806 }
807 /**
808 * @param spoolattributes
809 * @uml.property name="spoolattributes"
810 */
811 public void setSpoolattributes(String spoolattributes) {
812 this.spoolattributes = spoolattributes;
813 }
814 /**
815 * @return
816 * @uml.property name="where"
817 */
818 public String getWhere() {
819 return where;
820 }
821 /**
822 * @param where
823 * @uml.property name="where"
824 */
825 public void setWhere(String where) {
826 this.where = where;
827 }
828 /**
829 * @return
830 * @uml.property name="addprefix"
831 */
832 public String getAddprefix() {
833 return addprefix;
834 }
835 /**
836 * @param addprefix
837 * @uml.property name="addprefix"
838 */
839 public void setAddprefix(String addprefix) {
840 this.addprefix = addprefix;
841 }
842 /**
843 * @return
844 * @uml.property name="addsuffix"
845 */
846 public String getAddsuffix() {
847 return addsuffix;
848 }
849 /**
850 * @param addsuffix
851 * @uml.property name="addsuffix"
852 */
853 public void setAddsuffix(String addsuffix) {
854 this.addsuffix = addsuffix;
855 }
856 /**
857 * @return
858 * @uml.property name="stripprefix"
859 */
860 public String getStripprefix() {
861 return stripprefix;
862 }
863 /**
864 * @param stripprefix
865 * @uml.property name="stripprefix"
866 */
867 public void setStripprefix(String stripprefix) {
868 this.stripprefix = stripprefix;
869 }
870 /**
871 * @return
872 * @uml.property name="regexwhere"
873 */
874 public String getRegexwhere() {
875 return regexwhere;
876 }
877 /**
878 * @param regexwhere
879 * @uml.property name="regexwhere"
880 */
881 public void setRegexwhere(String regexwhere) {
882 this.regexwhere = regexwhere;
883 }
884 /**
885 * @return
886 * @uml.property name="replace"
887 */
888 public String getReplace() {
889 return replace;
890 }
891 /**
892 * @param replace
893 * @uml.property name="replace"
894 */
895 public void setReplace(String replace) {
896 this.replace = replace;
897 }
898 /**
899 * @return
900 * @uml.property name="prefixlinks"
901 */
902 public String getPrefixlinks() {
903 return prefixlinks;
904 }
905 /**
906 * @param prefixlinks
907 * @uml.property name="prefixlinks"
908 */
909 public void setPrefixlinks(String prefixlinks) {
910 this.prefixlinks = prefixlinks;
911 }
912 /**
913 * @return
914 * @uml.property name="maximumconcurrentjobs"
915 */
916 public String getMaximumconcurrentjobs() {
917 return maximumconcurrentjobs;
918 }
919 /**
920 * @param maximumconcurrentjobs
921 * @uml.property name="maximumconcurrentjobs"
922 */
923 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
924 this.maximumconcurrentjobs = maximumconcurrentjobs;
925 }
926 /**
927 * @return
928 * @uml.property name="rescheduleonerror"
929 */
930 public String getRescheduleonerror() {
931 return rescheduleonerror;
932 }
933 /**
934 * @param rescheduleonerror
935 * @uml.property name="rescheduleonerror"
936 */
937 public void setRescheduleonerror(String rescheduleonerror) {
938 this.rescheduleonerror = rescheduleonerror;
939 }
940 /**
941 * @return
942 * @uml.property name="rescheduleinterval"
943 */
944 public String getRescheduleinterval() {
945 return rescheduleinterval;
946 }
947 /**
948 * @param rescheduleinterval
949 * @uml.property name="rescheduleinterval"
950 */
951 public void setRescheduleinterval(String rescheduleinterval) {
952 this.rescheduleinterval = rescheduleinterval;
953 }
954 /**
955 * @return
956 * @uml.property name="rescheduletimes"
957 */
958 public String getRescheduletimes() {
959 return rescheduletimes;
960 }
961 /**
962 * @param rescheduletimes
963 * @uml.property name="rescheduletimes"
964 */
965 public void setRescheduletimes(String rescheduletimes) {
966 this.rescheduletimes = rescheduletimes;
967 }
968 /**
969 * @return
970 * @uml.property name="allowduplicatejobs"
971 */
972 public String getAllowduplicatejobs() {
973 return allowduplicatejobs;
974 }
975 /**
976 * @param allowduplicatejobs
977 * @uml.property name="allowduplicatejobs"
978 */
979 public void setAllowduplicatejobs(String allowduplicatejobs) {
980 this.allowduplicatejobs = allowduplicatejobs;
981 }
982 /**
983 * @return
984 * @uml.property name="allowhigherduplicates"
985 */
986 public String getAllowhigherduplicates() {
987 return allowhigherduplicates;
988 }
989 /**
990 * @param allowhigherduplicates
991 * @uml.property name="allowhigherduplicates"
992 */
993 public void setAllowhigherduplicates(String allowhigherduplicates) {
994 this.allowhigherduplicates = allowhigherduplicates;
995 }
996 /**
997 * @return
998 * @uml.property name="cancellowerlevelduplicates"
999 */
1000 public String getCancellowerlevelduplicates() {
1001 return cancellowerlevelduplicates;
1002 }
1003 /**
1004 * @param cancellowerlevelduplicates
1005 * @uml.property name="cancellowerlevelduplicates"
1006 */
1007 public void setCancellowerlevelduplicates(String cancellowerlevelduplicates) {
1008 this.cancellowerlevelduplicates = cancellowerlevelduplicates;
1009 }
1010 /**
1011 * @return
1012 * @uml.property name="cancelqueuedduplicates"
1013 */
1014 public String getCancelqueuedduplicates() {
1015 return cancelqueuedduplicates;
1016 }
1017 /**
1018 * @param cancelqueuedduplicates
1019 * @uml.property name="cancelqueuedduplicates"
1020 */
1021 public void setCancelqueuedduplicates(String cancelqueuedduplicates) {
1022 this.cancelqueuedduplicates = cancelqueuedduplicates;
1023 }
1024 /**
1025 * @return
1026 * @uml.property name="cancelrunningduplicates"
1027 */
1028 public String getCancelrunningduplicates() {
1029 return cancelrunningduplicates;
1030 }
1031 /**
1032 * @param cancelrunningduplicates
1033 * @uml.property name="cancelrunningduplicates"
1034 */
1035 public void setCancelrunningduplicates(String cancelrunningduplicates) {
1036 this.cancelrunningduplicates = cancelrunningduplicates;
1037 }
1038 /**
1039 * @return
1040 * @uml.property name="duplicatejobproximity"
1041 */
1042 public String getDuplicatejobproximity() {
1043 return duplicatejobproximity;
1044 }
1045 /**
1046 * @param duplicatejobproximity
1047 * @uml.property name="duplicatejobproximity"
1048 */
1049 public void setDuplicatejobproximity(String duplicatejobproximity) {
1050 this.duplicatejobproximity = duplicatejobproximity;
1051 }
1052 /**
1053 * @return
1054 * @uml.property name="run"
1055 */
1056 public String getRun() {
1057 return run;
1058 }
1059 /**
1060 * @param run
1061 * @uml.property name="run"
1062 */
1063 public void setRun(String run) {
1064 this.run = run;
1065 }
1066 /**
1067 * @return
1068 * @uml.property name="priority"
1069 */
1070 public String getPriority() {
1071 return priority;
1072 }
1073 /**
1074 * @param priority
1075 * @uml.property name="priority"
1076 */
1077 public void setPriority(String priority) {
1078 this.priority = priority;
1079 }
1080 /**
1081 * @return
1082 * @uml.property name="allowmixedpriority"
1083 */
1084 public String getAllowmixedpriority() {
1085 return allowmixedpriority;
1086 }
1087 /**
1088 * @param allowmixedpriority
1089 * @uml.property name="allowmixedpriority"
1090 */
1091 public void setAllowmixedpriority(String allowmixedpriority) {
1092 this.allowmixedpriority = allowmixedpriority;
1093 }
1094 /**
1095 * @return
1096 * @uml.property name="writepartafterjob"
1097 */
1098 public String getWritepartafterjob() {
1099 return writepartafterjob;
1100 }
1101 /**
1102 * @param writepartafterjob
1103 * @uml.property name="writepartafterjob"
1104 */
1105 public void setWritepartafterjob(String writepartafterjob) {
1106 this.writepartafterjob = writepartafterjob;
1107 }
1108}
Note: See TracBrowser for help on using the repository browser.