Ignore:
Timestamp:
Apr 9, 2010, 10:56:07 AM (14 years ago)
Author:
tobias
Message:

visual design slightly modified. tree functions extended

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobDefsItem.java

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