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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class ConsoleItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
     7        /**
     8         * @uml.property  name="password"
     9         */
    410        private String password;
    5         private String jobACL;
    6         private String clientACL;
    7         private String storageACL;
    8         private String scheduleACL;
    9         private String poolACL;
    10         private String fileSetACL;
    11         private String catalogACL;
    12         private String commandACL;
    13         private String whereACL;
     11        /**
     12         * @uml.property  name="jobacl"
     13         */
     14        private String jobacl;
     15        /**
     16         * @uml.property  name="clientacl"
     17         */
     18        private String clientacl;
     19        /**
     20         * @uml.property  name="storageacl"
     21         */
     22        private String storageacl;
     23        /**
     24         * @uml.property  name="scheduleacl"
     25         */
     26        private String scheduleacl;
     27        /**
     28         * @uml.property  name="poolacl"
     29         */
     30        private String poolacl;
     31        /**
     32         * @uml.property  name="fileSetacl"
     33         */
     34        private String fileSetacl;
     35        /**
     36         * @uml.property  name="catalogacl"
     37         */
     38        private String catalogacl;
     39        /**
     40         * @uml.property  name="commandacl"
     41         */
     42        private String commandacl;
     43        /**
     44         * @uml.property  name="whereacl"
     45         */
     46        private String whereacl;
    1447
    1548        public ConsoleItem(){}
     
    2053        }
    2154
     55        /**
     56         * @return
     57         * @uml.property  name="name"
     58         */
    2259        public String getName() {
    2360                return name;
    2461        }
    2562
     63        /**
     64         * @param name
     65         * @uml.property  name="name"
     66         */
    2667        public void setName(String name) {
    2768                this.name = name;
    2869        }
    2970
     71        /**
     72         * @return
     73         * @uml.property  name="password"
     74         */
    3075        public String getPassword() {
    3176                return password;
    3277        }
    3378
     79        /**
     80         * @param password
     81         * @uml.property  name="password"
     82         */
    3483        public void setPassword(String password) {
    3584                this.password = password;
    3685        }
    3786
    38         public String getJobACL() {
    39                 return jobACL;
    40         }
    41 
    42         public void setJobACL(String jobACL) {
    43                 this.jobACL = jobACL;
    44         }
    45 
    46         public String getClientACL() {
    47                 return clientACL;
    48         }
    49 
    50         public void setClientACL(String clientACL) {
    51                 this.clientACL = clientACL;
    52         }
    53 
    54         public String getStorageACL() {
    55                 return storageACL;
    56         }
    57 
    58         public void setStorageACL(String storageACL) {
    59                 this.storageACL = storageACL;
    60         }
    61 
    62         public String getScheduleACL() {
    63                 return scheduleACL;
    64         }
    65 
    66         public void setScheduleACL(String scheduleACL) {
    67                 this.scheduleACL = scheduleACL;
    68         }
    69 
    70         public String getPoolACL() {
    71                 return poolACL;
    72         }
    73 
    74         public void setPoolACL(String poolACL) {
    75                 this.poolACL = poolACL;
    76         }
    77 
    78         public String getFileSetACL() {
    79                 return fileSetACL;
    80         }
    81 
    82         public void setFileSetACL(String fileSetACL) {
    83                 this.fileSetACL = fileSetACL;
    84         }
    85 
    86         public String getCatalogACL() {
    87                 return catalogACL;
    88         }
    89 
    90         public void setCatalogACL(String catalogACL) {
    91                 this.catalogACL = catalogACL;
    92         }
    93 
    94         public String getCommandACL() {
    95                 return commandACL;
    96         }
    97 
    98         public void setCommandACL(String commandACL) {
    99                 this.commandACL = commandACL;
    100         }
    101 
    102         public String getWhereACL() {
    103                 return whereACL;
    104         }
    105 
    106         public void setWhereACL(String whereACL) {
    107                 this.whereACL = whereACL;
    108         }
     87        /**
     88         * @return
     89         * @uml.property  name="jobacl"
     90         */
     91        public String getJobacl() {
     92                return jobacl;
     93        }
     94
     95        /**
     96         * @param jobacl
     97         * @uml.property  name="jobacl"
     98         */
     99        public void setJobacl(String jobacl) {
     100                this.jobacl = jobacl;
     101        }
     102
     103        /**
     104         * @return
     105         * @uml.property  name="clientacl"
     106         */
     107        public String getClientacl() {
     108                return clientacl;
     109        }
     110
     111        /**
     112         * @param clientacl
     113         * @uml.property  name="clientacl"
     114         */
     115        public void setClientacl(String clientacl) {
     116                this.clientacl = clientacl;
     117        }
     118
     119        /**
     120         * @return
     121         * @uml.property  name="storageacl"
     122         */
     123        public String getStorageacl() {
     124                return storageacl;
     125        }
     126
     127        /**
     128         * @param storageacl
     129         * @uml.property  name="storageacl"
     130         */
     131        public void setStorageacl(String storageacl) {
     132                this.storageacl = storageacl;
     133        }
     134
     135        /**
     136         * @return
     137         * @uml.property  name="scheduleacl"
     138         */
     139        public String getScheduleacl() {
     140                return scheduleacl;
     141        }
     142
     143        /**
     144         * @param scheduleacl
     145         * @uml.property  name="scheduleacl"
     146         */
     147        public void setScheduleacl(String scheduleacl) {
     148                this.scheduleacl = scheduleacl;
     149        }
     150
     151        /**
     152         * @return
     153         * @uml.property  name="poolacl"
     154         */
     155        public String getPoolacl() {
     156                return poolacl;
     157        }
     158
     159        /**
     160         * @param poolacl
     161         * @uml.property  name="poolacl"
     162         */
     163        public void setPoolacl(String poolacl) {
     164                this.poolacl = poolacl;
     165        }
     166
     167        /**
     168         * @return
     169         * @uml.property  name="fileSetacl"
     170         */
     171        public String getFileSetacl() {
     172                return fileSetacl;
     173        }
     174
     175        /**
     176         * @param fileSetacl
     177         * @uml.property  name="fileSetacl"
     178         */
     179        public void setFileSetacl(String fileSetacl) {
     180                this.fileSetacl = fileSetacl;
     181        }
     182
     183        /**
     184         * @return
     185         * @uml.property  name="catalogacl"
     186         */
     187        public String getCatalogacl() {
     188                return catalogacl;
     189        }
     190
     191        /**
     192         * @param catalogacl
     193         * @uml.property  name="catalogacl"
     194         */
     195        public void setCatalogacl(String catalogacl) {
     196                this.catalogacl = catalogacl;
     197        }
     198
     199        /**
     200         * @return
     201         * @uml.property  name="commandacl"
     202         */
     203        public String getCommandacl() {
     204                return commandacl;
     205        }
     206
     207        /**
     208         * @param commandacl
     209         * @uml.property  name="commandacl"
     210         */
     211        public void setCommandacl(String commandacl) {
     212                this.commandacl = commandacl;
     213        }
     214
     215        /**
     216         * @return
     217         * @uml.property  name="whereacl"
     218         */
     219        public String getWhereacl() {
     220                return whereacl;
     221        }
     222
     223        /**
     224         * @param whereacl
     225         * @uml.property  name="whereacl"
     226         */
     227        public void setWhereacl(String whereacl) {
     228                this.whereacl = whereacl;
     229        }
     230
    109231}
Note: See TracChangeset for help on using the changeset viewer.