Ignore:
Timestamp:
Apr 20, 2010, 5:21:42 PM (14 years ago)
Author:
tobias
Message:

comments added
all methods of the wsdl file implemented

File:
1 edited

Legend:

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

    r858 r865  
    22public class ClientItem extends ItemType implements UserObjectItem{
    33
    4         /**
    5          * @uml.property  name="name"
    6          */
    74        private String name;
    8         /**
    9          * @uml.property  name="address"
    10          */
    115        private String address;
    12         /**
    13          * @uml.property  name="fdport"
    14          */
    156        private String fdport;
    16         /**
    17          * @uml.property  name="catalog"
    18          */
    197        private String catalog;
    20         /**
    21          * @uml.property  name="password"
    22          */
    238        private String password;
    24         /**
    25          * @uml.property  name="fileretention"
    26          */
    279        private String fileretention;
    28         /**
    29          * @uml.property  name="jobretention"
    30          */
    3110        private String jobretention;
    32         /**
    33          * @uml.property  name="autoprune"
    34          */
    3511        private String autoprune;
    36         /**
    37          * @uml.property  name="maximumconcurrentjobs"
    38          */
    3912        private String maximumconcurrentjobs;
    40         /**
    41          * @uml.property  name="priority"
    42          */
    4313        private String priority;
    4414       
    4515        public ClientItem() {}
    4616
    47         /**
    48          * @return
    49          * @uml.property  name="name"
    50          */
    5117        public String getName() {
    5218                return name;
    5319        }
    5420
    55         /**
    56          * @param name
    57          * @uml.property  name="name"
    58          */
    5921        public void setName(String name) {
    6022                this.name = name;
    6123        }
    6224
    63         /**
    64          * @return
    65          * @uml.property  name="address"
    66          */
    6725        public String getAddress() {
    6826                return address;
    6927        }
    7028
    71         /**
    72          * @param address
    73          * @uml.property  name="address"
    74          */
    7529        public void setAddress(String address) {
    7630                this.address = address;
     
    7832
    7933
    80         /**
    81          * @return
    82          * @uml.property  name="catalog"
    83          */
    8434        public String getCatalog() {
    8535                return catalog;
    8636        }
    8737
    88         /**
    89          * @param catalog
    90          * @uml.property  name="catalog"
    91          */
    9238        public void setCatalog(String catalog) {
    9339                this.catalog = catalog;
    9440        }
    9541
    96         /**
    97          * @return
    98          * @uml.property  name="password"
    99          */
    10042        public String getPassword() {
    10143                return password;
    10244        }
    10345
    104         /**
    105          * @param password
    106          * @uml.property  name="password"
    107          */
    10846        public void setPassword(String password) {
    10947                this.password = password;
    11048        }
    11149
    112         /**
    113          * @return
    114          * @uml.property  name="priority"
    115          */
    11650        public String getPriority() {
    11751                return priority;
    11852        }
    11953
    120         /**
    121          * @param priority
    122          * @uml.property  name="priority"
    123          */
    12454        public void setPriority(String priority) {
    12555                this.priority = priority;
    12656        }
    12757
    128         /**
    129          * @param fdport
    130          * @uml.property  name="fdport"
    131          */
    13258        public void setFdport(String fdport) {
    13359                this.fdport = fdport;
    13460        }
    13561
    136         /**
    137          * @return
    138          * @uml.property  name="fdport"
    139          */
    14062        public String getFdport() {
    14163                return fdport;
    14264        }
    14365
    144         /**
    145          * @param fileretention
    146          * @uml.property  name="fileretention"
    147          */
    14866        public void setFileretention(String fileretention) {
    14967                this.fileretention = fileretention;
    15068        }
    15169
    152         /**
    153          * @return
    154          * @uml.property  name="fileretention"
    155          */
    15670        public String getFileretention() {
    15771                return fileretention;
    15872        }
    15973
    160         /**
    161          * @param jobretention
    162          * @uml.property  name="jobretention"
    163          */
    16474        public void setJobretention(String jobretention) {
    16575                this.jobretention = jobretention;
    16676        }
    16777
    168         /**
    169          * @return
    170          * @uml.property  name="jobretention"
    171          */
    17278        public String getJobretention() {
    17379                return jobretention;
    17480        }
    17581
    176         /**
    177          * @param autoprune
    178          * @uml.property  name="autoprune"
    179          */
    18082        public void setAutoprune(String autoprune) {
    18183                this.autoprune = autoprune;
    18284        }
    18385
    184         /**
    185          * @return
    186          * @uml.property  name="autoprune"
    187          */
    18886        public String getAutoprune() {
    18987                return autoprune;
    19088        }
    19189
    192         /**
    193          * @param maximumconcurrentjobs
    194          * @uml.property  name="maximumconcurrentjobs"
    195          */
    19690        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
    19791                this.maximumconcurrentjobs = maximumconcurrentjobs;
    19892        }
    19993
    200         /**
    201          * @return
    202          * @uml.property  name="maximumconcurrentjobs"
    203          */
    20494        public String getMaximumconcurrentjobs() {
    20595                return maximumconcurrentjobs;
Note: See TracChangeset for help on using the changeset viewer.