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

    r858 r865  
    11package de.dass_it.vanhelsing.gui.items;
    22public class FDClientItem extends ItemType implements UserObjectItem{
    3         /**
    4          * @uml.property  name="name"
    5          */
    63        private String name;
    7         /**
    8          * @uml.property  name="workingdirectory"
    9          */
    104        private String workingdirectory;
    11         /**
    12          * @uml.property  name="piddirectory"
    13          */
    145        private String piddirectory;
    15         /**
    16          * @uml.property  name="heartbeatinterval"
    17          */
    186        private String heartbeatinterval;
    19         /**
    20          * @uml.property  name="maximumconcurrentjobs"
    21          */
    227        private String maximumconcurrentjobs;
    23         /**
    24          * @uml.property  name="fdaddresses"
    25          */
    268        private String fdaddresses;
    27         /**
    28          * @uml.property  name="fdport"
    29          */
    309        private String fdport;
    31         /**
    32          * @uml.property  name="fdaddress"
    33          */
    3410        private String fdaddress;
    35         /**
    36          * @uml.property  name="fdsourceaddress"
    37          */
    3811        private String fdsourceaddress;
    39         /**
    40          * @uml.property  name="sdconnecttimeout"
    41          */
    4212        private String sdconnecttimeout;
    43         /**
    44          * @uml.property  name="maximumnetworkbuffersize"
    45          */
    4613        private String maximumnetworkbuffersize;
    4714        //private String heartbeatInterval; Parameter in Dokumentation doppelt vorhanden
    48         /**
    49          * @uml.property  name="pkiencryption"
    50          */
    5115        private String pkiencryption;
    52         /**
    53          * @uml.property  name="pkisignatures"
    54          */
    5516        private String pkisignatures;
    56         /**
    57          * @uml.property  name="pkikeypair"
    58          */
    5917        private String pkikeypair;
    60         /**
    61          * @uml.property  name="pkimasterkey"
    62          */
    6318        private String pkimasterkey;
    6419       
     
    6924                setPiddirectory(piddirectory);
    7025        }
    71         /**
    72          * @return
    73          * @uml.property  name="name"
    74          */
    7526        public String getName() {
    7627                return name;
    7728        }
    78         /**
    79          * @param name
    80          * @uml.property  name="name"
    81          */
    8229        public void setName(String name) {
    8330                this.name = name;
    8431        }
    85         /**
    86          * @return
    87          * @uml.property  name="workingdirectory"
    88          */
    8932        public String getWorkingdirectory() {
    9033                return workingdirectory;
    9134        }
    92         /**
    93          * @param workingdirectory
    94          * @uml.property  name="workingdirectory"
    95          */
    9635        public void setWorkingdirectory(String workingdirectory) {
    9736                this.workingdirectory = workingdirectory;
    9837        }
    99         /**
    100          * @return
    101          * @uml.property  name="piddirectory"
    102          */
    10338        public String getPiddirectory() {
    10439                return piddirectory;
    10540        }
    106         /**
    107          * @param piddirectory
    108          * @uml.property  name="piddirectory"
    109          */
    11041        public void setPiddirectory(String piddirectory) {
    11142                this.piddirectory = piddirectory;
    11243        }
    113         /**
    114          * @return
    115          * @uml.property  name="heartbeatinterval"
    116          */
    11744        public String getHeartbeatinterval() {
    11845                return heartbeatinterval;
    11946        }
    120         /**
    121          * @param heartbeatinterval
    122          * @uml.property  name="heartbeatinterval"
    123          */
    12447        public void setHeartbeatinterval(String heartbeatinterval) {
    12548                this.heartbeatinterval = heartbeatinterval;
    12649        }
    127         /**
    128          * @return
    129          * @uml.property  name="maximumconcurrentjobs"
    130          */
    13150        public String getMaximumconcurrentjobs() {
    13251                return maximumconcurrentjobs;
    13352        }
    134         /**
    135          * @param maximumconcurrentjobs
    136          * @uml.property  name="maximumconcurrentjobs"
    137          */
    13853        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
    13954                this.maximumconcurrentjobs = maximumconcurrentjobs;
    14055        }
    141         /**
    142          * @return
    143          * @uml.property  name="fdaddresses"
    144          */
    14556        public String getFdaddresses() {
    14657                return fdaddresses;
    14758        }
    148         /**
    149          * @param fdaddresses
    150          * @uml.property  name="fdaddresses"
    151          */
    15259        public void setFdaddresses(String fdaddresses) {
    15360                this.fdaddresses = fdaddresses;
    15461        }
    155         /**
    156          * @return
    157          * @uml.property  name="fdport"
    158          */
    15962        public String getFdport() {
    16063                return fdport;
    16164        }
    162         /**
    163          * @param fdport
    164          * @uml.property  name="fdport"
    165          */
    16665        public void setFdport(String fdport) {
    16766                this.fdport = fdport;
    16867        }
    169         /**
    170          * @return
    171          * @uml.property  name="fdaddress"
    172          */
    17368        public String getFdaddress() {
    17469                return fdaddress;
    17570        }
    176         /**
    177          * @param fdaddress
    178          * @uml.property  name="fdaddress"
    179          */
    18071        public void setFdaddress(String fdaddress) {
    18172                this.fdaddress = fdaddress;
    18273        }
    183         /**
    184          * @return
    185          * @uml.property  name="fdsourceaddress"
    186          */
    18774        public String getFdsourceaddress() {
    18875                return fdsourceaddress;
    18976        }
    190         /**
    191          * @param fdsourceaddress
    192          * @uml.property  name="fdsourceaddress"
    193          */
    19477        public void setFdsourceaddress(String fdsourceaddress) {
    19578                this.fdsourceaddress = fdsourceaddress;
    19679        }
    197         /**
    198          * @return
    199          * @uml.property  name="sdconnecttimeout"
    200          */
    20180        public String getSdconnecttimeout() {
    20281                return sdconnecttimeout;
    20382        }
    204         /**
    205          * @param sdconnecttimeout
    206          * @uml.property  name="sdconnecttimeout"
    207          */
    20883        public void setSdconnecttimeout(String sdconnecttimeout) {
    20984                this.sdconnecttimeout = sdconnecttimeout;
    21085        }
    211         /**
    212          * @return
    213          * @uml.property  name="maximumnetworkbuffersize"
    214          */
    21586        public String getMaximumnetworkbuffersize() {
    21687                return maximumnetworkbuffersize;
    21788        }
    218         /**
    219          * @param maximumnetworkbuffersize
    220          * @uml.property  name="maximumnetworkbuffersize"
    221          */
    22289        public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) {
    22390                this.maximumnetworkbuffersize = maximumnetworkbuffersize;
    22491        }
    225         /**
    226          * @return
    227          * @uml.property  name="pkiencryption"
    228          */
    22992        public String getPkiencryption() {
    23093                return pkiencryption;
    23194        }
    232         /**
    233          * @param pkiencryption
    234          * @uml.property  name="pkiencryption"
    235          */
    23695        public void setPkiencryption(String pkiencryption) {
    23796                this.pkiencryption = pkiencryption;
    23897        }
    239         /**
    240          * @return
    241          * @uml.property  name="pkisignatures"
    242          */
    24398        public String getPkisignatures() {
    24499                return pkisignatures;
    245100        }
    246         /**
    247          * @param pkisignatures
    248          * @uml.property  name="pkisignatures"
    249          */
    250101        public void setPkisignatures(String pkisignatures) {
    251102                this.pkisignatures = pkisignatures;
    252103        }
    253         /**
    254          * @return
    255          * @uml.property  name="pkikeypair"
    256          */
    257104        public String getPkikeypair() {
    258105                return pkikeypair;
    259106        }
    260         /**
    261          * @param pkikeypair
    262          * @uml.property  name="pkikeypair"
    263          */
    264107        public void setPkikeypair(String pkikeypair) {
    265108                this.pkikeypair = pkikeypair;
    266109        }
    267         /**
    268          * @return
    269          * @uml.property  name="pkimasterkey"
    270          */
    271110        public String getPkimasterkey() {
    272111                return pkimasterkey;
    273112        }
    274         /**
    275          * @param pkimasterkey
    276          * @uml.property  name="pkimasterkey"
    277          */
    278113        public void setPkimasterkey(String pkimasterkey) {
    279114                this.pkimasterkey = pkimasterkey;
Note: See TracChangeset for help on using the changeset viewer.