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/JobItem.java

    r847 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class JobItem extends ItemType implements UserObjectItem{
     3
     4        /**
     5         * @uml.property  name="name"
     6         */
    37        private String name;
     8        /**
     9         * @uml.property  name="enabled"
     10         */
    411        private String enabled;
     12        /**
     13         * @uml.property  name="description"
     14         */
    515        private String description;
     16        /**
     17         * @uml.property  name="type"
     18         */
    619        private String type;
     20        /**
     21         * @uml.property  name="level"
     22         */
    723        private String level;
     24        /**
     25         * @uml.property  name="accurate"
     26         */
    827        private String accurate;
    9         private String verifyJob;
    10         private String jobDefs;
     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         */
    1139        private String bootstrap;
    12         private String writeBootstrap;
     40        /**
     41         * @uml.property  name="writebootstrap"
     42         */
     43        private String writebootstrap;
     44        /**
     45         * @uml.property  name="client"
     46         */
    1347        private String client;
    14         private String fileSet;
     48        /**
     49         * @uml.property  name="fileset"
     50         */
     51        private String fileset;
     52        /**
     53         * @uml.property  name="messages"
     54         */
    1555        private String messages;
     56        /**
     57         * @uml.property  name="pool"
     58         */
    1659        private String pool;
    17         private String fullBackupPool;
    18         private String differentialBackupPool;
    19         private String incrementalBackupPool;
     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         */
    2075        private String schedule;
     76        /**
     77         * @uml.property  name="storage"
     78         */
    2179        private String storage;
    22         private String maxStartDelay;
    23         private String maxRunTime;
    24         private String incrementalDifferentialMaxWaitTime;
    25         private String incrementalMaxRunTime;
    26         private String differentialMaxWaitTime;
    27         private String maxRunSchedTime;
    28         private String maxWaitTime;
    29         private String maxFullInterval;
    30         private String preferMountedVolumes;
    31         private String pruneJobs;
    32         private String pruneFiles;
    33         private String pruneVolumes;
    34         private String runScript;
    35         private String runBeforeJob;
    36         private String runAfterJob;
    37         private String runAfterFailedJob;
    38         private String clientRunBeforeJob;
    39         private String clientRunAfterJob;
    40         private String rerunFailedLevels;
    41         private String spoolData;
    42         private String spoolAttributes;
     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         */
    43167        private String where;
    44         private String addPrefix;
    45         private String addSuffix;
    46         private String stripPrefix;
    47         private String regexWhere;
     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         */
    48187        private String replace;
    49         private String prefixLinks;
    50         private String maximumConcurrentJobs;
    51         private String RescheduleOnError;
    52         private String rescheduleInterval;
    53         private String rescheduleTimes;
    54         private String allowDuplicateJobs;
    55         private String allowHigherDuplicates;
    56         private String cancelLowerLevelDuplicates;
    57         private String cancelQueuedDuplicates;
    58         private String cancelRunningDuplicates;
    59         private String duplicateJobProximity;
     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         */
    60235        private String run;
     236        /**
     237         * @uml.property  name="priority"
     238         */
    61239        private String priority;
    62         private String allowMixedPriority;
    63         private String writePartAfterJob;
     240        /**
     241         * @uml.property  name="allowmixedpriority"
     242         */
     243        private String allowmixedpriority;
     244        /**
     245         * @uml.property  name="writepartafterjob"
     246         */
     247        private String writepartafterjob;
    64248
    65249        public JobItem() {}
    66         public JobItem(String name, String client, String type, String level, String fileSet, String schedule,
    67                         String messages, String pool, String storage, String priority, String writeBootstrap){
    68 
    69         }
     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         */
    70257        public String getName() {
    71258                return name;
    72259        }
     260        /**
     261         * @param name
     262         * @uml.property  name="name"
     263         */
    73264        public void setName(String name) {
    74265                this.name = name;
    75266        }
     267        /**
     268         * @return
     269         * @uml.property  name="enabled"
     270         */
    76271        public String getEnabled() {
    77272                return enabled;
    78273        }
     274        /**
     275         * @param enabled
     276         * @uml.property  name="enabled"
     277         */
    79278        public void setEnabled(String enabled) {
    80279                this.enabled = enabled;
    81280        }
     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         */
    82292        public void setDescription(String description) {
    83293                this.description = description;
    84294        }
    85         public String getDescription() {
    86                 return description;
    87         }
     295        /**
     296         * @return
     297         * @uml.property  name="type"
     298         */
    88299        public String getType() {
    89300                return type;
    90301        }
     302        /**
     303         * @param type
     304         * @uml.property  name="type"
     305         */
    91306        public void setType(String type) {
    92307                this.type = type;
    93308        }
     309        /**
     310         * @return
     311         * @uml.property  name="level"
     312         */
    94313        public String getLevel() {
    95314                return level;
    96315        }
     316        /**
     317         * @param level
     318         * @uml.property  name="level"
     319         */
    97320        public void setLevel(String level) {
    98321                this.level = level;
    99322        }
     323        /**
     324         * @return
     325         * @uml.property  name="accurate"
     326         */
    100327        public String getAccurate() {
    101328                return accurate;
    102329        }
     330        /**
     331         * @param accurate
     332         * @uml.property  name="accurate"
     333         */
    103334        public void setAccurate(String accurate) {
    104335                this.accurate = accurate;
    105336        }
    106         public String getVerifyJob() {
    107                 return verifyJob;
    108         }
    109         public void setVerifyJob(String verifyJob) {
    110                 this.verifyJob = verifyJob;
    111         }
    112         public String getJobDefs() {
    113                 return jobDefs;
    114         }
    115         public void setJobDefs(String jobDefs) {
    116                 this.jobDefs = jobDefs;
    117         }
     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         */
    118369        public String getBootstrap() {
    119370                return bootstrap;
    120371        }
     372        /**
     373         * @param bootstrap
     374         * @uml.property  name="bootstrap"
     375         */
    121376        public void setBootstrap(String bootstrap) {
    122377                this.bootstrap = bootstrap;
    123378        }
    124         public String getWriteBootstrap() {
    125                 return writeBootstrap;
    126         }
    127         public void setWriteBootstrap(String writeBootstrap) {
    128                 this.writeBootstrap = writeBootstrap;
    129         }
     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         */
    130397        public String getClient() {
    131398                return client;
    132399        }
     400        /**
     401         * @param client
     402         * @uml.property  name="client"
     403         */
    133404        public void setClient(String client) {
    134405                this.client = client;
    135406        }
    136         public String getFileSet() {
    137                 return fileSet;
    138         }
    139         public void setFileSet(String fileSet) {
    140                 this.fileSet = fileSet;
    141         }
     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         */
    142425        public String getMessages() {
    143426                return messages;
    144427        }
     428        /**
     429         * @param messages
     430         * @uml.property  name="messages"
     431         */
    145432        public void setMessages(String messages) {
    146433                this.messages = messages;
    147434        }
     435        /**
     436         * @return
     437         * @uml.property  name="pool"
     438         */
    148439        public String getPool() {
    149440                return pool;
    150441        }
     442        /**
     443         * @param pool
     444         * @uml.property  name="pool"
     445         */
    151446        public void setPool(String pool) {
    152447                this.pool = pool;
    153448        }
    154         public String getFullBackupPool() {
    155                 return fullBackupPool;
    156         }
    157         public void setFullBackupPool(String fullBackupPool) {
    158                 this.fullBackupPool = fullBackupPool;
    159         }
    160         public String getDifferentialBackupPool() {
    161                 return differentialBackupPool;
    162         }
    163         public void setDifferentialBackupPool(String differentialBackupPool) {
    164                 this.differentialBackupPool = differentialBackupPool;
    165         }
    166         public String getIncrementalBackupPool() {
    167                 return incrementalBackupPool;
    168         }
    169         public void setIncrementalBackupPool(String incrementalBackupPool) {
    170                 this.incrementalBackupPool = incrementalBackupPool;
    171         }
     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         */
    172495        public String getSchedule() {
    173496                return schedule;
    174497        }
     498        /**
     499         * @param schedule
     500         * @uml.property  name="schedule"
     501         */
    175502        public void setSchedule(String schedule) {
    176503                this.schedule = schedule;
    177504        }
     505        /**
     506         * @return
     507         * @uml.property  name="storage"
     508         */
    178509        public String getStorage() {
    179510                return storage;
    180511        }
     512        /**
     513         * @param storage
     514         * @uml.property  name="storage"
     515         */
    181516        public void setStorage(String storage) {
    182517                this.storage = storage;
    183518        }
    184         public String getMaxStartDelay() {
    185                 return maxStartDelay;
    186         }
    187         public void setMaxStartDelay(String maxStartDelay) {
    188                 this.maxStartDelay = maxStartDelay;
    189         }
    190         public String getMaxRunTime() {
    191                 return maxRunTime;
    192         }
    193         public void setMaxRunTime(String maxRunTime) {
    194                 this.maxRunTime = maxRunTime;
    195         }
    196         public String getIncrementalDifferentialMaxWaitTime() {
    197                 return incrementalDifferentialMaxWaitTime;
    198         }
    199         public void setIncrementalDifferentialMaxWaitTime(
    200                         String incrementalDifferentialMaxWaitTime) {
    201                 this.incrementalDifferentialMaxWaitTime = incrementalDifferentialMaxWaitTime;
    202         }
    203         public String getIncrementalMaxRunTime() {
    204                 return incrementalMaxRunTime;
    205         }
    206         public void setIncrementalMaxRunTime(String incrementalMaxRunTime) {
    207                 this.incrementalMaxRunTime = incrementalMaxRunTime;
    208         }
    209         public String getDifferentialMaxWaitTime() {
    210                 return differentialMaxWaitTime;
    211         }
    212         public void setDifferentialMaxWaitTime(String differentialMaxWaitTime) {
    213                 this.differentialMaxWaitTime = differentialMaxWaitTime;
    214         }
    215         public String getMaxRunSchedTime() {
    216                 return maxRunSchedTime;
    217         }
    218         public void setMaxRunSchedTime(String maxRunSchedTime) {
    219                 this.maxRunSchedTime = maxRunSchedTime;
    220         }
    221         public String getMaxWaitTime() {
    222                 return maxWaitTime;
    223         }
    224         public void setMaxWaitTime(String maxWaitTime) {
    225                 this.maxWaitTime = maxWaitTime;
    226         }
    227         public String getMaxFullInterval() {
    228                 return maxFullInterval;
    229         }
    230         public void setMaxFullInterval(String maxFullInterval) {
    231                 this.maxFullInterval = maxFullInterval;
    232         }
    233         public String getPreferMountedVolumes() {
    234                 return preferMountedVolumes;
    235         }
    236         public void setPreferMountedVolumes(String preferMountedVolumes) {
    237                 this.preferMountedVolumes = preferMountedVolumes;
    238         }
    239         public String getPruneJobs() {
    240                 return pruneJobs;
    241         }
    242         public void setPruneJobs(String pruneJobs) {
    243                 this.pruneJobs = pruneJobs;
    244         }
    245         public String getPruneFiles() {
    246                 return pruneFiles;
    247         }
    248         public void setPruneFiles(String pruneFiles) {
    249                 this.pruneFiles = pruneFiles;
    250         }
    251         public String getPruneVolumes() {
    252                 return pruneVolumes;
    253         }
    254         public void setPruneVolumes(String pruneVolumes) {
    255                 this.pruneVolumes = pruneVolumes;
    256         }
    257         public String getRunScript() {
    258                 return runScript;
    259         }
    260         public void setRunScript(String runScript) {
    261                 this.runScript = runScript;
    262         }
    263         public String getRunBeforeJob() {
    264                 return runBeforeJob;
    265         }
    266         public void setRunBeforeJob(String runBeforeJob) {
    267                 this.runBeforeJob = runBeforeJob;
    268         }
    269         public String getRunAfterJob() {
    270                 return runAfterJob;
    271         }
    272         public void setRunAfterJob(String runAfterJob) {
    273                 this.runAfterJob = runAfterJob;
    274         }
    275         public String getRunAfterFailedJob() {
    276                 return runAfterFailedJob;
    277         }
    278         public void setRunAfterFailedJob(String runAfterFailedJob) {
    279                 this.runAfterFailedJob = runAfterFailedJob;
    280         }
    281         public String getClientRunBeforeJob() {
    282                 return clientRunBeforeJob;
    283         }
    284         public void setClientRunBeforeJob(String clientRunBeforeJob) {
    285                 this.clientRunBeforeJob = clientRunBeforeJob;
    286         }
    287         public String getClientRunAfterJob() {
    288                 return clientRunAfterJob;
    289         }
    290         public void setClientRunAfterJob(String clientRunAfterJob) {
    291                 this.clientRunAfterJob = clientRunAfterJob;
    292         }
    293         public String getRerunFailedLevels() {
    294                 return rerunFailedLevels;
    295         }
    296         public void setRerunFailedLevels(String rerunFailedLevels) {
    297                 this.rerunFailedLevels = rerunFailedLevels;
    298         }
    299         public String getSpoolData() {
    300                 return spoolData;
    301         }
    302         public void setSpoolData(String spoolData) {
    303                 this.spoolData = spoolData;
    304         }
    305         public String getSpoolAttributes() {
    306                 return spoolAttributes;
    307         }
    308         public void setSpoolAttributes(String spoolAttributes) {
    309                 this.spoolAttributes = spoolAttributes;
    310         }
     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         */
    311818        public String getWhere() {
    312819                return where;
    313820        }
     821        /**
     822         * @param where
     823         * @uml.property  name="where"
     824         */
    314825        public void setWhere(String where) {
    315826                this.where = where;
    316827        }
    317         public String getAddPrefix() {
    318                 return addPrefix;
    319         }
    320         public void setAddPrefix(String addPrefix) {
    321                 this.addPrefix = addPrefix;
    322         }
    323         public String getAddSuffix() {
    324                 return addSuffix;
    325         }
    326         public void setAddSuffix(String addSuffix) {
    327                 this.addSuffix = addSuffix;
    328         }
    329         public String getStripPrefix() {
    330                 return stripPrefix;
    331         }
    332         public void setStripPrefix(String stripPrefix) {
    333                 this.stripPrefix = stripPrefix;
    334         }
    335         public String getRegexWhere() {
    336                 return regexWhere;
    337         }
    338         public void setRegexWhere(String regexWhere) {
    339                 this.regexWhere = regexWhere;
    340         }
     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         */
    341888        public String getReplace() {
    342889                return replace;
    343890        }
     891        /**
     892         * @param replace
     893         * @uml.property  name="replace"
     894         */
    344895        public void setReplace(String replace) {
    345896                this.replace = replace;
    346897        }
    347         public String getPrefixLinks() {
    348                 return prefixLinks;
    349         }
    350         public void setPrefixLinks(String prefixLinks) {
    351                 this.prefixLinks = prefixLinks;
    352         }
    353         public String getMaximumConcurrentJobs() {
    354                 return maximumConcurrentJobs;
    355         }
    356         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    357                 this.maximumConcurrentJobs = maximumConcurrentJobs;
    358         }
    359         public String getRescheduleOnError() {
    360                 return RescheduleOnError;
    361         }
    362         public void setRescheduleOnError(String rescheduleOnError) {
    363                 RescheduleOnError = rescheduleOnError;
    364         }
    365         public String getRescheduleInterval() {
    366                 return rescheduleInterval;
    367         }
    368         public void setRescheduleInterval(String rescheduleInterval) {
    369                 this.rescheduleInterval = rescheduleInterval;
    370         }
    371         public String getRescheduleTimes() {
    372                 return rescheduleTimes;
    373         }
    374         public void setRescheduleTimes(String rescheduleTimes) {
    375                 this.rescheduleTimes = rescheduleTimes;
    376         }
    377         public String getAllowDuplicateJobs() {
    378                 return allowDuplicateJobs;
    379         }
    380         public void setAllowDuplicateJobs(String allowDuplicateJobs) {
    381                 this.allowDuplicateJobs = allowDuplicateJobs;
    382         }
    383         public String getAllowHigherDuplicates() {
    384                 return allowHigherDuplicates;
    385         }
    386         public void setAllowHigherDuplicates(String allowHigherDuplicates) {
    387                 this.allowHigherDuplicates = allowHigherDuplicates;
    388         }
    389         public String getCancelLowerLevelDuplicates() {
    390                 return cancelLowerLevelDuplicates;
    391         }
    392         public void setCancelLowerLevelDuplicates(String cancelLowerLevelDuplicates) {
    393                 this.cancelLowerLevelDuplicates = cancelLowerLevelDuplicates;
    394         }
    395         public String getCancelQueuedDuplicates() {
    396                 return cancelQueuedDuplicates;
    397         }
    398         public void setCancelQueuedDuplicates(String cancelQueuedDuplicates) {
    399                 this.cancelQueuedDuplicates = cancelQueuedDuplicates;
    400         }
    401         public String getCancelRunningDuplicates() {
    402                 return cancelRunningDuplicates;
    403         }
    404         public void setCancelRunningDuplicates(String cancelRunningDuplicates) {
    405                 this.cancelRunningDuplicates = cancelRunningDuplicates;
    406         }
    407         public String getDuplicateJobProximity() {
    408                 return duplicateJobProximity;
    409         }
    410         public void setDuplicateJobProximity(String duplicateJobProximity) {
    411                 this.duplicateJobProximity = duplicateJobProximity;
    412         }
     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         */
    4131056        public String getRun() {
    4141057                return run;
    4151058        }
     1059        /**
     1060         * @param run
     1061         * @uml.property  name="run"
     1062         */
    4161063        public void setRun(String run) {
    4171064                this.run = run;
    4181065        }
     1066        /**
     1067         * @return
     1068         * @uml.property  name="priority"
     1069         */
    4191070        public String getPriority() {
    4201071                return priority;
    4211072        }
     1073        /**
     1074         * @param priority
     1075         * @uml.property  name="priority"
     1076         */
    4221077        public void setPriority(String priority) {
    4231078                this.priority = priority;
    4241079        }
    425         public String getAllowMixedPriority() {
    426                 return allowMixedPriority;
    427         }
    428         public void setAllowMixedPriority(String allowMixedPriority) {
    429                 this.allowMixedPriority = allowMixedPriority;
    430         }
    431         public String getWritePartAfterJob() {
    432                 return writePartAfterJob;
    433         }
    434         public void setWritePartAfterJob(String writePartAfterJob) {
    435                 this.writePartAfterJob = writePartAfterJob;
     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;
    4361107        }
    4371108}
Note: See TracChangeset for help on using the changeset viewer.