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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class FDClientItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
    4         private String workingDirectory;
    5         private String pidDirectory;
    6         private String heartbeatInterval;
    7         private String maximumConcurrentJobs;
    8         private String fdAddresses;
    9         private String fdPort;
    10         private String fdAddress;
    11         private String fdSourceAddress;
    12         private String sdConnectTimeout;
    13         private String maximumNetworkBufferSize;
     7        /**
     8         * @uml.property  name="workingdirectory"
     9         */
     10        private String workingdirectory;
     11        /**
     12         * @uml.property  name="piddirectory"
     13         */
     14        private String piddirectory;
     15        /**
     16         * @uml.property  name="heartbeatinterval"
     17         */
     18        private String heartbeatinterval;
     19        /**
     20         * @uml.property  name="maximumconcurrentjobs"
     21         */
     22        private String maximumconcurrentjobs;
     23        /**
     24         * @uml.property  name="fdaddresses"
     25         */
     26        private String fdaddresses;
     27        /**
     28         * @uml.property  name="fdport"
     29         */
     30        private String fdport;
     31        /**
     32         * @uml.property  name="fdaddress"
     33         */
     34        private String fdaddress;
     35        /**
     36         * @uml.property  name="fdsourceaddress"
     37         */
     38        private String fdsourceaddress;
     39        /**
     40         * @uml.property  name="sdconnecttimeout"
     41         */
     42        private String sdconnecttimeout;
     43        /**
     44         * @uml.property  name="maximumnetworkbuffersize"
     45         */
     46        private String maximumnetworkbuffersize;
    1447        //private String heartbeatInterval; Parameter in Dokumentation doppelt vorhanden
    15         private String pkiEncryption;
    16         private String pkiSignatures;
    17         private String pkiKeypair;
    18         private String pkiMasterKey;
     48        /**
     49         * @uml.property  name="pkiencryption"
     50         */
     51        private String pkiencryption;
     52        /**
     53         * @uml.property  name="pkisignatures"
     54         */
     55        private String pkisignatures;
     56        /**
     57         * @uml.property  name="pkikeypair"
     58         */
     59        private String pkikeypair;
     60        /**
     61         * @uml.property  name="pkimasterkey"
     62         */
     63        private String pkimasterkey;
    1964       
    2065        public FDClientItem(){}
    2166        public FDClientItem(String name, String workingDirectory, String pidDirectory){
    2267                setName(name);
    23                 setWorkingDirectory(workingDirectory);
    24                 setPidDirectory(pidDirectory);
    25         }
     68                setWorkingdirectory(workingdirectory);
     69                setPiddirectory(piddirectory);
     70        }
     71        /**
     72         * @return
     73         * @uml.property  name="name"
     74         */
    2675        public String getName() {
    2776                return name;
    2877        }
     78        /**
     79         * @param name
     80         * @uml.property  name="name"
     81         */
    2982        public void setName(String name) {
    3083                this.name = name;
    3184        }
    32         public String getWorkingDirectory() {
    33                 return workingDirectory;
    34         }
    35         public void setWorkingDirectory(String workingDirectory) {
    36                 this.workingDirectory = workingDirectory;
    37         }
    38         public String getPidDirectory() {
    39                 return pidDirectory;
    40         }
    41         public void setPidDirectory(String pidDirectory) {
    42                 this.pidDirectory = pidDirectory;
    43         }
    44         public String getHeartbeatInterval() {
    45                 return heartbeatInterval;
    46         }
    47         public void setHeartbeatInterval(String heartbeatInterval) {
    48                 this.heartbeatInterval = heartbeatInterval;
    49         }
    50         public String getMaximumConcurrentJobs() {
    51                 return maximumConcurrentJobs;
    52         }
    53         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    54                 this.maximumConcurrentJobs = maximumConcurrentJobs;
    55         }
    56         public String getFdAddresses() {
    57                 return fdAddresses;
    58         }
    59         public void setFdAddresses(String fdAddresses) {
    60                 this.fdAddresses = fdAddresses;
    61         }
    62         public String getFdPort() {
    63                 return fdPort;
    64         }
    65         public void setFdPort(String fdPort) {
    66                 this.fdPort = fdPort;
    67         }
    68         public String getFdAddress() {
    69                 return fdAddress;
    70         }
    71         public void setFdAddress(String fdAddress) {
    72                 this.fdAddress = fdAddress;
    73         }
    74         public String getFdSourceAddress() {
    75                 return fdSourceAddress;
    76         }
    77         public void setFdSourceAddress(String fdSourceAddress) {
    78                 this.fdSourceAddress = fdSourceAddress;
    79         }
    80         public String getSdConnectTimeout() {
    81                 return sdConnectTimeout;
    82         }
    83         public void setSdConnectTimeout(String sdConnectTimeout) {
    84                 this.sdConnectTimeout = sdConnectTimeout;
    85         }
    86         public String getMaximumNetworkBufferSize() {
    87                 return maximumNetworkBufferSize;
    88         }
    89         public void setMaximumNetworkBufferSize(String maximumNetworkBufferSize) {
    90                 this.maximumNetworkBufferSize = maximumNetworkBufferSize;
    91         }
    92         public String getPkiEncryption() {
    93                 return pkiEncryption;
    94         }
    95         public void setPkiEncryption(String pkiEncryption) {
    96                 this.pkiEncryption = pkiEncryption;
    97         }
    98         public String getPkiSignatures() {
    99                 return pkiSignatures;
    100         }
    101         public void setPkiSignatures(String pkiSignatures) {
    102                 this.pkiSignatures = pkiSignatures;
    103         }
    104         public String getPkiKeypair() {
    105                 return pkiKeypair;
    106         }
    107         public void setPkiKeypair(String pkiKeypair) {
    108                 this.pkiKeypair = pkiKeypair;
    109         }
    110         public String getPkiMasterKey() {
    111                 return pkiMasterKey;
    112         }
    113         public void setPkiMasterKey(String pkiMasterKey) {
    114                 this.pkiMasterKey = pkiMasterKey;
    115         }
    116        
     85        /**
     86         * @return
     87         * @uml.property  name="workingdirectory"
     88         */
     89        public String getWorkingdirectory() {
     90                return workingdirectory;
     91        }
     92        /**
     93         * @param workingdirectory
     94         * @uml.property  name="workingdirectory"
     95         */
     96        public void setWorkingdirectory(String workingdirectory) {
     97                this.workingdirectory = workingdirectory;
     98        }
     99        /**
     100         * @return
     101         * @uml.property  name="piddirectory"
     102         */
     103        public String getPiddirectory() {
     104                return piddirectory;
     105        }
     106        /**
     107         * @param piddirectory
     108         * @uml.property  name="piddirectory"
     109         */
     110        public void setPiddirectory(String piddirectory) {
     111                this.piddirectory = piddirectory;
     112        }
     113        /**
     114         * @return
     115         * @uml.property  name="heartbeatinterval"
     116         */
     117        public String getHeartbeatinterval() {
     118                return heartbeatinterval;
     119        }
     120        /**
     121         * @param heartbeatinterval
     122         * @uml.property  name="heartbeatinterval"
     123         */
     124        public void setHeartbeatinterval(String heartbeatinterval) {
     125                this.heartbeatinterval = heartbeatinterval;
     126        }
     127        /**
     128         * @return
     129         * @uml.property  name="maximumconcurrentjobs"
     130         */
     131        public String getMaximumconcurrentjobs() {
     132                return maximumconcurrentjobs;
     133        }
     134        /**
     135         * @param maximumconcurrentjobs
     136         * @uml.property  name="maximumconcurrentjobs"
     137         */
     138        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
     139                this.maximumconcurrentjobs = maximumconcurrentjobs;
     140        }
     141        /**
     142         * @return
     143         * @uml.property  name="fdaddresses"
     144         */
     145        public String getFdaddresses() {
     146                return fdaddresses;
     147        }
     148        /**
     149         * @param fdaddresses
     150         * @uml.property  name="fdaddresses"
     151         */
     152        public void setFdaddresses(String fdaddresses) {
     153                this.fdaddresses = fdaddresses;
     154        }
     155        /**
     156         * @return
     157         * @uml.property  name="fdport"
     158         */
     159        public String getFdport() {
     160                return fdport;
     161        }
     162        /**
     163         * @param fdport
     164         * @uml.property  name="fdport"
     165         */
     166        public void setFdport(String fdport) {
     167                this.fdport = fdport;
     168        }
     169        /**
     170         * @return
     171         * @uml.property  name="fdaddress"
     172         */
     173        public String getFdaddress() {
     174                return fdaddress;
     175        }
     176        /**
     177         * @param fdaddress
     178         * @uml.property  name="fdaddress"
     179         */
     180        public void setFdaddress(String fdaddress) {
     181                this.fdaddress = fdaddress;
     182        }
     183        /**
     184         * @return
     185         * @uml.property  name="fdsourceaddress"
     186         */
     187        public String getFdsourceaddress() {
     188                return fdsourceaddress;
     189        }
     190        /**
     191         * @param fdsourceaddress
     192         * @uml.property  name="fdsourceaddress"
     193         */
     194        public void setFdsourceaddress(String fdsourceaddress) {
     195                this.fdsourceaddress = fdsourceaddress;
     196        }
     197        /**
     198         * @return
     199         * @uml.property  name="sdconnecttimeout"
     200         */
     201        public String getSdconnecttimeout() {
     202                return sdconnecttimeout;
     203        }
     204        /**
     205         * @param sdconnecttimeout
     206         * @uml.property  name="sdconnecttimeout"
     207         */
     208        public void setSdconnecttimeout(String sdconnecttimeout) {
     209                this.sdconnecttimeout = sdconnecttimeout;
     210        }
     211        /**
     212         * @return
     213         * @uml.property  name="maximumnetworkbuffersize"
     214         */
     215        public String getMaximumnetworkbuffersize() {
     216                return maximumnetworkbuffersize;
     217        }
     218        /**
     219         * @param maximumnetworkbuffersize
     220         * @uml.property  name="maximumnetworkbuffersize"
     221         */
     222        public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) {
     223                this.maximumnetworkbuffersize = maximumnetworkbuffersize;
     224        }
     225        /**
     226         * @return
     227         * @uml.property  name="pkiencryption"
     228         */
     229        public String getPkiencryption() {
     230                return pkiencryption;
     231        }
     232        /**
     233         * @param pkiencryption
     234         * @uml.property  name="pkiencryption"
     235         */
     236        public void setPkiencryption(String pkiencryption) {
     237                this.pkiencryption = pkiencryption;
     238        }
     239        /**
     240         * @return
     241         * @uml.property  name="pkisignatures"
     242         */
     243        public String getPkisignatures() {
     244                return pkisignatures;
     245        }
     246        /**
     247         * @param pkisignatures
     248         * @uml.property  name="pkisignatures"
     249         */
     250        public void setPkisignatures(String pkisignatures) {
     251                this.pkisignatures = pkisignatures;
     252        }
     253        /**
     254         * @return
     255         * @uml.property  name="pkikeypair"
     256         */
     257        public String getPkikeypair() {
     258                return pkikeypair;
     259        }
     260        /**
     261         * @param pkikeypair
     262         * @uml.property  name="pkikeypair"
     263         */
     264        public void setPkikeypair(String pkikeypair) {
     265                this.pkikeypair = pkikeypair;
     266        }
     267        /**
     268         * @return
     269         * @uml.property  name="pkimasterkey"
     270         */
     271        public String getPkimasterkey() {
     272                return pkimasterkey;
     273        }
     274        /**
     275         * @param pkimasterkey
     276         * @uml.property  name="pkimasterkey"
     277         */
     278        public void setPkimasterkey(String pkimasterkey) {
     279                this.pkimasterkey = pkimasterkey;
     280        }
     281
    117282}
Note: See TracChangeset for help on using the changeset viewer.