Changeset 865
- Timestamp:
- Apr 20, 2010, 5:21:42 PM (15 years ago)
- Location:
- vanHelsing/trunk/gui
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/BeanUtil.java
r864 r865 15 15 * Managed beans will extend this class either directly or 16 16 * via a data structure helper class like TreeNavigation 17 * @author tgoecke 17 18 */ 18 19 public class BeanUtil { … … 32 33 } 33 34 /** 34 * 35 * convenience method to return all properties of a given attribute 35 36 * @param key key contains the key value of the set of properties for a given attribute<br/> 36 37 * except for the suffix which defines the content type of the property. … … 46 47 } 47 48 /** 48 * 49 * returns true if the given attribute is required 49 50 * @param type resource type of the attribute, like Client 50 51 * @param key attribute name of the resource, like Port 51 * @return true if the field is required or false52 * @return true if the field is required 52 53 */ 53 54 public static boolean getRequired(String type, String key) { -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/Client.java
r864 r865 1 1 package de.dass_it.vanhelsing.gui; 2 3 import java.util.Iterator; 2 4 3 5 import de.dass_it.www.vanhelsing.*; … … 5 7 import de.dass_it.www.vanhelsing.VanHelsingStub.*; 6 8 /** 7 * Client wraps the access9 * Client wraps access methods and data structure of the axis client 8 10 * @author tgoecke 9 11 * 10 12 */ 11 13 public class Client { 14 /** 15 * Access method to get a list of resources of a given director and resource type. 16 * @param director the director on which the configuration is based on. 17 * @param resource the name of the resource, e.g. client or job 18 * @return an array of ResourceInfo objects. ResourceInfo has four attributes: <br/> 19 * director, resource id, resource name and resource type. 20 * If an Exception is thrown an empty array is returned. 21 */ 12 22 public ResourceInfo[] getListResources(String director, String resource){ 13 23 ListResourcesType lrt = new ListResourcesType(); … … 16 26 return getListResources(lrt); 17 27 } 28 /** 29 * Access method to get a list of resources of a given director and resource type. 30 * The argument is wrapped within the ListReosurceType object. 31 * @param lrt ListResourceType contains the director and the resource type as strings 32 * @return an array of ResourceInfo objects. ResourceInfo has four attributes: 33 * director, resource id, resource name and resource type. 34 * If an Exception is thrown an empty array is returned. 35 */ 18 36 public ResourceInfo[] getListResources(ListResourcesType lrt){ 19 37 VanHelsingStub stub; … … 33 51 return new ResourceInfo[0]; 34 52 } 35 53 /** 54 * retrieve an array of key value pairs describing a given simple resource 55 * @param director the director on which the configuration is based on. 56 * @param resId the id of the resource. 57 * @return a SimpleResource object containing a ResourceInfo object and a <br/> 58 * ResourceAttributeType object array. 59 */ 36 60 public SimpleResource getSimpleResource(String director, int resId){ 37 61 GetResourceType grt = new GetResourceType(); … … 40 64 return getSimpleResource(grt); 41 65 } 66 /** 67 * retrieve an array of key value pairs describing a given simple resource 68 * @param grt GetResourceType contains a director and a resId. 69 * @return a SimpleResource object containing a ResourceInfo object and a <br/> 70 * ResourceAttributeType object array. 71 */ 42 72 public SimpleResource getSimpleResource(GetResourceType grt){ 43 73 VanHelsingStub stub; … … 57 87 58 88 } catch(Exception e){ 59 System.err.println("getSR: " + grt.getResId() + ":" + e.toString());89 System.err.println("getSR: " + grt.getResId() + " : " + e.toString()); 60 90 } 61 91 return new SimpleResource(new ResourceInfo(), new ResourceAttributeType[0]); 62 92 } 63 public SetSimpleResourceResponse setSimpleResource(){ 93 /** 94 * Update or replace method for a simple resource. 95 * @param director the director on which the configuration is based on 96 * @param resourceType the name of the resource e.g. client or job 97 * @param resId the id number of the resource in the tree of the service 98 * @param replace true if the given object is to be replaced,<br/> 99 * false if only the changed values are to be updated. 100 * @param name name of a given resource 101 * @param keyValues containing the key-value-pairs of the resource 102 * @return a status value of type string 103 */ 104 public SetSimpleResourceResponse setSimpleResource(String director, String resourceType, 105 int resId, boolean replace, String name, String[][] keyValues){ 106 ResourceInfo resInfo = new ResourceInfo(); 107 resInfo.setDirector(director); 108 resInfo.setResId(resId); 109 resInfo.setResName(name); 110 resInfo.setResType(resourceType); 111 112 ResourceAttributeType[] rat = new ResourceAttributeType[keyValues.length]; 113 int i = 0; 114 for (String [] pair : keyValues){ 115 rat[i].setKey(pair[0]); 116 rat[i].setValue(pair[1]); 117 i++; 118 } 119 64 120 ResourceInitialization ri = new ResourceInitialization(); 121 ri.setResInfo(resInfo); 122 ri.setResAttribute(rat); 123 ri.setReplace(replace); 65 124 return setSimpleResource(ri); 66 125 } 126 /** 127 * Update or replace method for a simple resource. 128 * @param ri ResourceInitialization contains a ResAttributeType array,<br/> 129 * a boolean value Replace and a ResourceInfo object 130 * @return a string containing a status value 131 */ 67 132 public SetSimpleResourceResponse setSimpleResource(ResourceInitialization ri){ 68 133 VanHelsingStub stub; … … 85 150 return null; 86 151 } 87 152 /** 153 * Helper method to create a FileSetInclude object to be used by the<br/> 154 * setFileSetResource and createFileSetResource method 155 * @param fileList file parameter list of the include component 156 * @param fsOptions options parameter list of the include component 157 * @return a FileSetInclude object 158 */ 159 public FileSetInclude makeFileSetInclude(ResourceAttributeType[] fileList, 160 ResourceAttributeType[] fsOptions){ 161 FileSetInclude fsi = new FileSetInclude(); 162 fsi.setFileList(fileList); 163 fsi.setOptions(fsOptions); 164 return fsi; 165 } 166 /** 167 * Helper method to create a ResourceAttributeType[] object out of an array of arrays of strings 168 * @param array contains the key-value-pairs which will be stored in the ResourceAttributeType[] 169 * @return the created ResourceAttributeType array 170 */ 171 public ResourceAttributeType[] makeResAttrTypeArray(String[][] array){ 172 ResourceAttributeType[] rat = new ResourceAttributeType[array.length]; 173 int i = 0; 174 for (String[] pair : array){ 175 rat[i].setKey(pair[0]); 176 rat[i].setValue(pair[1]); 177 i++; 178 } 179 return rat; 180 } 181 /** 182 * helper method to create a FileSetResource as an argument to the setFileSetResource method and calls said method 183 * @param replace the object will be replaced if this parameter is set to true, otherwise the changed values will be updated 184 * @param fsi a FileSetInclude object containing the include block of the FileSetResource 185 * @param options a ResourceAttributeType[] object containing the options block of the FileSetResource 186 * @param exclude a ResourceAttributeType[] object containing the exclude options 187 * @param param a ResourceAttributeType[] object containing the file set options 188 * @return a status value of type string 189 */ 190 public SetFileSetResourceResponse setFileSetResource(boolean replace, FileSetInclude fsi, 191 ResourceAttributeType[] options, ResourceAttributeType[] exclude, 192 ResourceAttributeType[] param){ 193 FileSetResource fsr = new FileSetResource(); 194 fsr.setReplace(replace); 195 fsr.setInclude(fsi); 196 fsr.setOptions(options); 197 fsr.setExclude(exclude); 198 fsr.setParameters(param); 199 return setFileSetResource(fsr); 200 } 201 /** 202 * Update or replace method for a file set resource. 203 * @param fsr 204 * @return a status value of type string 205 */ 206 public SetFileSetResourceResponse setFileSetResource(FileSetResource fsr){ 207 VanHelsingStub stub; 208 try { 209 stub = getStub(); 210 VanHelsingStub.SetFileSetResource req = new VanHelsingStub.SetFileSetResource(); 211 req.setSetFileSetResource(fsr); 212 213 VanHelsingStub.SetFileSetResourceResponse res = stub.setFileSetResource(req); 214 return res; 215 216 } catch (SetFileSetResourceFault1Exception ef1){ 217 System.err.println("Constraint Violation"); 218 } catch (SetFileSetResourceFaultException ef) { 219 System.err.println("Syntax Error"); 220 } catch (Exception e){ 221 System.err.println(e.toString()); 222 } 223 return null; 224 } 225 /** 226 * helper method for accessing the deleteResource method. 227 * @param director the director on which the configuration is based on 228 * @param resId the id of the resource. 229 * @param resName the name of the resource 230 * @param resType the type of the resource 231 */ 232 public void deleteResource(String director, int resId, String resName, String resType){ 233 ResourceInfo ri = new ResourceInfo(); 234 ri.setDirector(director); 235 ri.setResId(resId); 236 ri.setResName(resName); 237 ri.setResType(resType); 238 deleteResource(ri); 239 } 240 /** 241 * deletes a resource object of any type identified by the resource id 242 * @param ri ResourceInfo object containing the identification of the resource 243 */ 244 public void deleteResource(ResourceInfo ri){ 245 VanHelsingStub stub; 246 try{ 247 stub = getStub(); 248 VanHelsingStub.DeleteResource req = new VanHelsingStub.DeleteResource(); 249 req.setDeleteResource(ri); 250 stub.deleteResource(req); 251 } catch (DeleteResourceFault1Exception ef1){ 252 System.err.println("invalid Id"); 253 } catch (DeleteResourceFaultException ef){ 254 System.err.println("Constraint Violation"); 255 } catch (Exception e){ 256 System.err.println(e.toString()); 257 } 258 } 259 /** 260 * helper method to create a ResourceInfo object 261 * @param director the director on which the configuration is based on 262 * @param id the id of the resource. 263 * @param name the name of the resource 264 * @param type the type of the resource 265 * @return new ResourceInfo object 266 */ 267 public ResourceInfo makeResourceInfo(String director, int id, String name, String type){ 268 ResourceInfo ri = new ResourceInfo(); 269 ri.setDirector(director); 270 ri.setResId(id); 271 ri.setResName(name); 272 ri.setResType(type); 273 return ri; 274 } 275 /** 276 * creates a simple resource object at Van Helsing 277 * @param replace the object will be replaced if this parameter is set to true, otherwise the changed values will be updated 278 * @param rat list of key value pairs of type ResourceAttributeType[] 279 * @param rinfo ResourceInfo object containing identification information of the object 280 * @return Id of the created simple resource 281 */ 282 public int createSimpleResource(boolean replace, ResourceAttributeType[] rat, ResourceInfo rinfo){ 283 284 ResourceInitialization ri = new ResourceInitialization(); 285 ri.setReplace(replace); 286 ri.setResInfo(rinfo); 287 ri.setResAttribute(rat); 288 return createSimpleResource(ri); 289 } 290 /** 291 * creates a simple resource object at Van Helsing 292 * @param ri ResourceInitialization object containing the needed information to create a simple resource object 293 * @return the id of the created SimpleResource 294 */ 295 public int createSimpleResource(ResourceInitialization ri){ 296 VanHelsingStub stub; 297 try { 298 stub = getStub(); 299 VanHelsingStub.CreateSimpleResource req = new VanHelsingStub.CreateSimpleResource(); 300 req.setCreateSimpleResource(ri); 301 302 VanHelsingStub.CreateSimpleResourceResponse res = stub.createSimpleResource(req); 303 return res.getResId(); 304 } catch (CreateSimpleResourceFaultException ef) { 305 System.err.println("Syntax Error"); 306 } catch (Exception e){ 307 System.err.println(e.toString()); 308 } 309 return -1; 310 } 311 /** 312 * creates a file set resource at Van Helsing 313 * @param replace the object will be replaced if this parameter is set to true, otherwise the changed values will be updated 314 * @param fsi FileSetInclude object containing the options and 315 * @param options list of key value pairs containing the options of a file set 316 * @param exclude list of key value pairs containing the excluded file(types) 317 * @param param list of key value pairs containing parameters of a file set 318 * @return the id of the created resource 319 */ 320 public int createFileSetResource(boolean replace, FileSetInclude fsi, 321 ResourceAttributeType[] options, ResourceAttributeType[] exclude, 322 ResourceAttributeType[] param){ 323 FileSetResource fsr = new FileSetResource(); 324 fsr.setReplace(replace); 325 fsr.setInclude(fsi); 326 fsr.setOptions(options); 327 fsr.setExclude(exclude); 328 fsr.setParameters(param); 329 return createFileSetResource(fsr); 330 } 331 /** 332 * creates a file set object at Van Helsing 333 * @param fsr FileSetResource object contains the needed information to create a FileSetResource 334 * @return the id of the created FileSetResource 335 */ 336 public int createFileSetResource(FileSetResource fsr){ 337 VanHelsingStub stub; 338 try{ 339 stub = getStub(); 340 VanHelsingStub.CreateFileSetResource req = new VanHelsingStub.CreateFileSetResource(); 341 req.setCreateFileSetResource(fsr); 342 343 VanHelsingStub.CreateFileSetResourceResponse res = stub.createFileSetResource(req); 344 return res.getResId(); 345 346 } catch (CreateFileSetResourceFaultException ef){ 347 System.err.println(); 348 } catch (Exception e) { 349 System.err.println(e.toString()); 350 } 351 return -1; 352 } 353 /** 354 * Helper method to create a VanHelsingStub.<br/> 355 * Chunked encoding is deactivated because of ZSI. 356 * @return a stub object used by the other access methods 357 * @throws Exception 358 */ 88 359 private VanHelsingStub getStub() throws Exception { 89 360 String url = new String("http://localhost:8080/"); -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/DataTree.java
r864 r865 7 7 import de.dass_it.vanhelsing.gui.items.UserObjectItem; 8 8 import de.dass_it.vanhelsing.gui.items.UserObjectItemType; 9 9 /** 10 * DataTree contains the data tree of a navigation view and the method used by the view regarding the data tree 11 * @author tgoecke 12 */ 10 13 public class DataTree { 11 14 private DefaultTreeModel tree; … … 13 16 14 17 public DataTree() {} 15 18 /** 19 * creates a new data tree and sets the name value of the root node to the value of argument name 20 * @param name label of the root node 21 */ 16 22 public void setTree(String name){ 17 23 setRoot(new DefaultMutableTreeNode()); … … 24 30 obj.setResName(name); 25 31 } 32 /** 33 * creates a tree node as a child to the parent node containing the given UserObectItem 34 * @param parent root node of the created tree node 35 * @param userObject a user object which implements the UserObjectItem interface, usually a resource type object 36 * @return returns the created node object 37 */ 26 38 public DefaultMutableTreeNode createNode(DefaultMutableTreeNode parent, UserObjectItem userObject){ 27 39 DefaultMutableTreeNode node = new DefaultMutableTreeNode(); … … 33 45 return node; 34 46 } 47 /** 48 * replace a tree nodes UserObject 49 * @param node node object whose userObject will be updated 50 * @param userObject new UserObject to replace the nodes current UserObject 51 */ 35 52 public void updateNode(DefaultMutableTreeNode node, UserObjectItem userObject){ 36 node.setUserObject(userObject);53 ((UserObjectItemType)node.getUserObject()).setUserObject(userObject); 37 54 } 55 /** 56 * retrieves a node by the value of the UserObjects resId 57 * @param id value to be matched by the returned object 58 * @return first node whose UserObject attribute resId matches the argument id 59 */ 38 60 public DefaultMutableTreeNode getNodeById(int id){ 39 61 DefaultMutableTreeNode node; … … 50 72 return null; 51 73 } 74 /** 75 * retrieves a node by the value of the UserObjects resName 76 * @param name string value to be matched by the returned object 77 * @return first node whose UserObject attribute matches the argument name 78 */ 52 79 public DefaultMutableTreeNode getNodeByName(String name){ 53 80 DefaultMutableTreeNode node; … … 63 90 return null; 64 91 } 92 /** 93 * deletes the given node from the data tree 94 * @param node the node which is deleted by this operation 95 * @return node the deleted node 96 * @throws ConstraintViolationException if the node has child nodes 97 */ 65 98 public DefaultMutableTreeNode deleteNode(DefaultMutableTreeNode node) throws ConstraintViolationException{ 66 99 if (node.getChildCount()>0) throw new ConstraintViolationException(); … … 69 102 return node; 70 103 } 104 71 105 public DefaultMutableTreeNode getRoot(){ 72 106 return root; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/JobScheduleBean.java
r864 r865 8 8 import javax.faces.context.FacesContext; 9 9 10 /* 10 /** 11 11 * JobSchedule will list all schedules and the jobs which are associated 12 12 * with a given schedule. … … 15 15 private DataTree dataTree; 16 16 private ConcreteUserObjectItem selectedObject; 17 18 17 public JobScheduleBean(){ 19 18 init(); 20 19 } 21 20 /** 21 * creates a data tree for the job / schedule view 22 */ 22 23 private void init(){ 23 24 Client c = new Client(); … … 47 48 } 48 49 50 /** 51 * creates a new node in the data tree 52 * @param ae ActionEvent parameter as required by JSF. Not used by this method 53 */ 49 54 public void createNodeListener(ActionEvent ae){ 50 55 //Methode kann nur mit ausgewählten ParentNode ausgeführt werden … … 55 60 //dataTree.createNode(parent, userObject); 56 61 } 62 /** 63 * updates the selected node of the data tree 64 * @param ae ActionEvent parameter as required by JSF. Not used by this method 65 */ 57 66 public void updateNodeListener(ActionEvent ae){ 58 67 BeanUtil.setInfoMessage(null, "Die Methode ist noch nicht implementiert"); 59 68 60 69 } 70 /** 71 * delete the selected node of the data tree 72 * @param ae 73 */ 61 74 public void deleteNodeListener(ActionEvent ae){ 62 75 DefaultMutableTreeNode node; … … 85 98 dataTree.getTree().reload(); 86 99 } 100 /** 101 * rebuilds the data tree 102 * @param ae ActionEvent parameter as required by JSF. Not used by this method 103 */ 87 104 public void reloadTreeListener(ActionEvent ae){ 88 105 init(); … … 92 109 93 110 } 94 111 /** 112 * getter method for the dataTree attribute 113 * @return dataTree returns the dataTree object. If you want to user Javas tree methods directly 114 */ 95 115 public DataTree getDataTree(){ 96 116 return dataTree; 97 117 } 98 118 /** 119 * setter method for the dataTree attribute. 120 * @param dataTree the new dataTree object 121 */ 99 122 public void setDataTree(DataTree dataTree){ 100 123 this.dataTree = dataTree; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/PropertyBundle.java
r858 r865 6 6 import java.util.ResourceBundle; 7 7 import javax.faces.context.FacesContext; 8 8 /** 9 * Class containing the methods used to access the messages property bundle 10 * @author tgoecke 11 * 12 */ 9 13 public class PropertyBundle{ 10 14 11 15 private static ResourceBundle properties; 12 16 private static final String path = "de.dass_it.vanhelsing.gui.messages"; 13 17 /** 18 * reads the messages property file 19 */ 14 20 private static void initialize(){ 15 21 Locale l = FacesContext.getCurrentInstance().getViewRoot().getLocale(); … … 20 26 properties = ResourceBundle.getBundle(path, l); 21 27 } 28 /** 29 * method returns a single value of a given key 30 * @param key key of 31 * @return value of the property identified by key. If an exception is thrown, null will be returned 32 */ 22 33 public static String getProperty(String key){ 23 34 try{ … … 32 43 return null; 33 44 } 45 /** 46 * method to retrieve properties with a partial key. a partial key is the first n characters of a key 47 * 48 * @param partialKey first n characters of a property key 49 * @return an array of values whose keys started with partialKey. an empty array is returned if no matchings have been found 50 */ 34 51 public static String[] getTypeProperties(String partialKey){ 35 52 Enumeration<String> keySet = properties.getKeys(); … … 45 62 } 46 63 result.trimToSize(); 64 if (result.size()>0) return (String[]) result.toArray(); 47 65 return result.toArray(new String[0]); 48 66 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/SimpleResource.java
r860 r865 3 3 import de.dass_it.www.vanhelsing.VanHelsingStub.ResourceAttributeType; 4 4 import de.dass_it.www.vanhelsing.VanHelsingStub.ResourceInfo; 5 5 /** 6 * SimpleResource is used as a return type for getSimpleResource() method 7 * Since this class contains only setter and getter methods there is no further documentation 8 * @author tgoecke 9 * 10 */ 6 11 public class SimpleResource{ 7 12 private ResourceInfo resourceInfo; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/TopologyBean.java
r830 r865 1 1 package de.dass_it.vanhelsing.gui; 2 /* 2 /** 3 3 * Topology lists Bacula daemons as part of a data center 4 * @author tgoecke 4 5 */ 5 6 public class TopologyBean extends TreeNavigation { -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/TreeNavigation.java
r859 r865 12 12 import de.dass_it.www.vanhelsing.VanHelsingStub.*; 13 13 14 /* 14 /** 15 15 * Helper class to encapsulate all procedures 16 16 * to work with the tree structure. 17 * @author tgoecke 17 18 */ 18 19 public class TreeNavigation extends BeanUtil { 19 20 private DefaultTreeModel tree; 20 21 //private Logger logger = Logger.getLogger(this.getClass()); 22 /** 23 * @param root root node of the tree to be created 24 * @param nodes list of names (resource types) used to create header nodes 25 * @param title argument currently not used. 26 * @return tree returns a data tree to be used by a view bean 27 */ 21 28 public DefaultTreeModel createTree(DefaultMutableTreeNode root, 22 29 String[] nodes, String title){ … … 43 50 return tree; 44 51 } 45 52 /** 53 * adds a node to the given parent node, of resource type string and label value title 54 * @param parent parent node of the created node 55 * @param type resource type of the created node 56 * @param title label value of the created type 57 * @return node the created node 58 */ 46 59 public DefaultMutableTreeNode addNode(DefaultMutableTreeNode parent, String type, String title){ 47 60 DefaultMutableTreeNode node = new DefaultMutableTreeNode(); … … 84 97 return null; 85 98 } 99 /** 100 * adds a node to the given parent node of resourcetype type which contains the values of the ResourceInfo() object 101 * @param parent parent node of the created node 102 * @param type resource type of the created node 103 * @param ri the data object which is used to update the node UserObject 104 * @return node the created node 105 */ 86 106 public DefaultMutableTreeNode addNode(DefaultMutableTreeNode parent, String type, ResourceInfo ri){ 87 107 DefaultMutableTreeNode node = new DefaultMutableTreeNode(); … … 142 162 return null; 143 163 } 164 /** 165 * adds a node to the given parent node of resourcetype type which contains the values of the ResourceAttributeType[] 166 * @param parent parent node of the created node 167 * @param type resource type of the created node 168 * @param ra a list of key value pairs returned by the web service access methods 169 * @return node the updated parent node 170 */ 144 171 public DefaultMutableTreeNode addNode(DefaultMutableTreeNode parent, String type, ResourceAttributeType[] ra){ 145 172 … … 193 220 } 194 221 } 195 196 197 198 199 222 //Value-Wert aus Key: Value zusammenbauen 200 223 … … 217 240 return null; 218 241 } 242 /** 243 * returns the first node whose UserObject attribute resId matches the given id or null if no node is found 244 * @param id resId value of the node 245 * @param tree tree object which contains the node 246 * @return matching node or null if no mathcing node is found 247 */ 219 248 public DefaultMutableTreeNode getNode(String id, DefaultTreeModel tree){ 220 249 DefaultMutableTreeNode root; … … 234 263 return null; 235 264 } 265 /** 266 * returns the UserObject of a node whose resId attribute matches id 267 */ 236 268 public UserObjectItem getNodeObject(String id, DefaultTreeModel tree){ 237 269 DefaultMutableTreeNode node = getNode(id, tree); -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/UserObjectItemFactory.java
r862 r865 7 7 import de.dass_it.www.vanhelsing.VanHelsingStub.ResourceAttributeType; 8 8 import de.dass_it.www.vanhelsing.VanHelsingStub.ResourceInfo; 9 9 /** 10 * create a ConcreteUserObject out of a ResourceInfo oder ResourceAttributeType() 11 * @author tgoecke 12 * 13 */ 10 14 public class UserObjectItemFactory { 11 15 /** 16 * creates a UserObjectItem based on a ResourceInfo object 17 * @param ri ResourceInfo object to create the UserObjectItem 18 * @return a new ConcreteUserObjectItem object 19 */ 12 20 public UserObjectItem createUserObjectItem(ResourceInfo ri){ 13 21 ConcreteUserObjectItem obj = new ConcreteUserObjectItem(); … … 18 26 return obj; 19 27 } 20 28 /** 29 * creates a UserObjectItem based on a ResourceAttributeType array and a ResourceInfo object 30 * @param ra key value pair object 31 * @param ri 32 * @return the created UserObjectItem 33 */ 21 34 public UserObjectItem createUserObjectItem(ResourceAttributeType ra[], ResourceInfo ri){ 22 35 ConcreteUserObjectItem obj = (ConcreteUserObjectItem)createUserObjectItem(ri); -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ValidationParser.java
r859 r865 1 1 package de.dass_it.vanhelsing.gui; 2 2 import java.io.*; 3 /* 4 * Einlesen der Dateien dird_conf.c, filed_conf.c und stored_conf.c 3 /** 4 * ValidationParser reads dird_conf.c, filed_conf.c, stored_conf.c and parse.c. 5 * Run ValidationParser from command line with two arguments. The first argument defines the domain, i.e. director, storagedaemon or filedaemon. The second argument should be the path of the c file. 6 * Output is written to standard output and can therefore be appended to the properties file. 7 * The domain of the message resource should be 'director' 8 * @author tgoecke 5 9 */ 6 10 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ViewItem.java
r862 r865 4 4 import de.dass_it.vanhelsing.gui.items.ItemType; 5 5 import de.dass_it.vanhelsing.gui.items.UserObjectItem; 6 6 /** 7 * The class ViewItem is used for the visualization of a SimpleResource object. 8 * Rendered SimpleResources are ArrayLists of ViewItem objects. 9 * @author tgoecke 10 * 11 */ 7 12 public class ViewItem extends ItemType implements UserObjectItem { 8 13 private String key; … … 16 21 private String selectOneMenu; 17 22 private String radioGroup; 18 19 23 public ViewItem(){ 20 24 inputText = null; … … 48 52 49 53 50 //Methoden aus ItemType für die Zuordnung von Änderungen51 54 public int getResId(){ 52 55 return super.getResId(); … … 93 96 return selectOneMenu; 94 97 } 95 98 /** 99 * Set the string property of the intended render type to the value of the none empty string "bernd" 100 * @param r valid inputs are inputText, selectOneMenu and radioGroup 101 */ 96 102 public void setRendererFlag(String r){ 97 103 if (r.equals("inputText")) { … … 105 111 } 106 112 } 107 113 /** 114 * Key-Value-Pairs for the SelectOneMenu 115 * @return an array of key value pairs as an SelectItem object array 116 */ 108 117 public SelectItem[] getKeyValueList() { 109 118 return keyValueList; 110 119 } 111 120 /** 121 * 122 * @param keyValueList 123 */ 112 124 public void setKeyValueList(SelectItem[] keyValueList) { 113 125 this.keyValueList = keyValueList; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/CatalogItem.java
r858 r865 3 3 public class CatalogItem extends ItemType implements UserObjectItem{ 4 4 5 /**6 * @uml.property name="name"7 */8 5 private String name; 9 /**10 * @uml.property name="password"11 */12 6 private String password; 13 /**14 * @uml.property name="dbname"15 */16 7 private String dbname; 17 /**18 * @uml.property name="user"19 */20 8 private String user; 21 /**22 * @uml.property name="dbsocket"23 */24 9 private String dbsocket; 25 /**26 * @uml.property name="dbaddress"27 */28 10 private String dbaddress; 29 /**30 * @uml.property name="dbport"31 */32 11 private String dbport; 33 /**34 * @uml.property name="description"35 */36 12 private String description; 37 /**38 * @uml.property name="address"39 */40 13 private String address; 41 /**42 * @uml.property name="dbpassword"43 */44 14 private String dbpassword; 45 /**46 * @uml.property name="dbuser"47 */48 15 private String dbuser; 49 /**50 * @uml.property name="dbdriver"51 */52 16 private String dbdriver; 53 /**54 * @uml.property name="multipleconnections"55 */56 17 private String multipleconnections; 57 18 … … 64 25 setPassword(password); 65 26 } 66 /**67 * @return68 * @uml.property name="name"69 */70 27 public String getName() { 71 28 return name; 72 29 } 73 /**74 * @param name75 * @uml.property name="name"76 */77 30 public void setName(String name) { 78 31 this.name = name; 79 32 } 80 /**81 * @return82 * @uml.property name="password"83 */84 33 public String getPassword() { 85 34 return password; 86 35 } 87 /**88 * @param password89 * @uml.property name="password"90 */91 36 public void setPassword(String password) { 92 37 this.password = password; 93 38 } 94 /**95 * @return96 * @uml.property name="dbname"97 */98 39 public String getDbname() { 99 40 return dbname; 100 41 } 101 /**102 * @param dbname103 * @uml.property name="dbname"104 */105 42 public void setDbname(String dbname) { 106 43 this.dbname = dbname; 107 44 } 108 /**109 * @return110 * @uml.property name="user"111 */112 45 public String getUser() { 113 46 return user; 114 47 } 115 /**116 * @param user117 * @uml.property name="user"118 */119 48 public void setUser(String user) { 120 49 this.user = user; 121 50 } 122 /**123 * @return124 * @uml.property name="dbsocket"125 */126 51 public String getDbsocket() { 127 52 return dbsocket; 128 53 } 129 /**130 * @param dbsocket131 * @uml.property name="dbsocket"132 */133 54 public void setDbsocket(String dbsocket) { 134 55 this.dbsocket = dbsocket; 135 56 } 136 /**137 * @return138 * @uml.property name="dbaddress"139 */140 57 public String getDbaddress() { 141 58 return dbaddress; … … 144 61 this.dbaddress = dbaddress; 145 62 } 146 /**147 * @return148 * @uml.property name="dbport"149 */150 63 public String getDbport() { 151 64 return dbport; 152 65 } 153 /**154 * @param dbport155 * @uml.property name="dbport"156 */157 66 public void setDbport(String dbport) { 158 67 this.dbport = dbport; 159 68 } 160 /**161 * @return162 * @uml.property name="description"163 */164 69 public String getDescription() { 165 70 return description; 166 71 } 167 /**168 * @param description169 * @uml.property name="description"170 */171 72 public void setDescription(String description) { 172 73 this.description = description; 173 74 } 174 /**175 * @return176 * @uml.property name="address"177 */178 75 public String getAddress() { 179 76 return address; 180 77 } 181 /**182 * @param address183 * @uml.property name="address"184 */185 78 public void setAddress(String address) { 186 79 this.address = address; 187 80 } 188 /**189 * @return190 * @uml.property name="dbpassword"191 */192 81 public String getDbpassword() { 193 82 return dbpassword; 194 83 } 195 /**196 * @param dbpassword197 * @uml.property name="dbpassword"198 */199 84 public void setDbpassword(String dbpassword) { 200 85 this.dbpassword = dbpassword; 201 86 } 202 /**203 * @return204 * @uml.property name="dbuser"205 */206 87 public String getDbuser() { 207 88 return dbuser; 208 89 } 209 /**210 * @param dbuser211 * @uml.property name="dbuser"212 */213 90 public void setDbuser(String dbuser) { 214 91 this.dbuser = dbuser; 215 92 } 216 /**217 * @return218 * @uml.property name="dbdriver"219 */220 93 public String getDbdriver() { 221 94 return dbdriver; 222 95 } 223 /**224 * @param dbdriver225 * @uml.property name="dbdriver"226 */227 96 public void setDbdriver(String dbdriver) { 228 97 this.dbdriver = dbdriver; 229 98 } 230 /**231 * @return232 * @uml.property name="multipleconnections"233 */234 99 public String getMultipleconnections() { 235 100 return multipleconnections; 236 101 } 237 /**238 * @param multipleconnections239 * @uml.property name="multipleconnections"240 */241 102 public void setMultipleconnections(String multipleconnections) { 242 103 this.multipleconnections = multipleconnections; 243 104 } 244 /**245 * @param dbaddress246 * @uml.property name="dbaddress"247 */248 105 public void setDbaddress(String dbaddress) { 249 106 this.dbaddress = dbaddress; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ClientItem.java
r858 r865 2 2 public class ClientItem extends ItemType implements UserObjectItem{ 3 3 4 /**5 * @uml.property name="name"6 */7 4 private String name; 8 /**9 * @uml.property name="address"10 */11 5 private String address; 12 /**13 * @uml.property name="fdport"14 */15 6 private String fdport; 16 /**17 * @uml.property name="catalog"18 */19 7 private String catalog; 20 /**21 * @uml.property name="password"22 */23 8 private String password; 24 /**25 * @uml.property name="fileretention"26 */27 9 private String fileretention; 28 /**29 * @uml.property name="jobretention"30 */31 10 private String jobretention; 32 /**33 * @uml.property name="autoprune"34 */35 11 private String autoprune; 36 /**37 * @uml.property name="maximumconcurrentjobs"38 */39 12 private String maximumconcurrentjobs; 40 /**41 * @uml.property name="priority"42 */43 13 private String priority; 44 14 45 15 public ClientItem() {} 46 16 47 /**48 * @return49 * @uml.property name="name"50 */51 17 public String getName() { 52 18 return name; 53 19 } 54 20 55 /**56 * @param name57 * @uml.property name="name"58 */59 21 public void setName(String name) { 60 22 this.name = name; 61 23 } 62 24 63 /**64 * @return65 * @uml.property name="address"66 */67 25 public String getAddress() { 68 26 return address; 69 27 } 70 28 71 /**72 * @param address73 * @uml.property name="address"74 */75 29 public void setAddress(String address) { 76 30 this.address = address; … … 78 32 79 33 80 /**81 * @return82 * @uml.property name="catalog"83 */84 34 public String getCatalog() { 85 35 return catalog; 86 36 } 87 37 88 /**89 * @param catalog90 * @uml.property name="catalog"91 */92 38 public void setCatalog(String catalog) { 93 39 this.catalog = catalog; 94 40 } 95 41 96 /**97 * @return98 * @uml.property name="password"99 */100 42 public String getPassword() { 101 43 return password; 102 44 } 103 45 104 /**105 * @param password106 * @uml.property name="password"107 */108 46 public void setPassword(String password) { 109 47 this.password = password; 110 48 } 111 49 112 /**113 * @return114 * @uml.property name="priority"115 */116 50 public String getPriority() { 117 51 return priority; 118 52 } 119 53 120 /**121 * @param priority122 * @uml.property name="priority"123 */124 54 public void setPriority(String priority) { 125 55 this.priority = priority; 126 56 } 127 57 128 /**129 * @param fdport130 * @uml.property name="fdport"131 */132 58 public void setFdport(String fdport) { 133 59 this.fdport = fdport; 134 60 } 135 61 136 /**137 * @return138 * @uml.property name="fdport"139 */140 62 public String getFdport() { 141 63 return fdport; 142 64 } 143 65 144 /**145 * @param fileretention146 * @uml.property name="fileretention"147 */148 66 public void setFileretention(String fileretention) { 149 67 this.fileretention = fileretention; 150 68 } 151 69 152 /**153 * @return154 * @uml.property name="fileretention"155 */156 70 public String getFileretention() { 157 71 return fileretention; 158 72 } 159 73 160 /**161 * @param jobretention162 * @uml.property name="jobretention"163 */164 74 public void setJobretention(String jobretention) { 165 75 this.jobretention = jobretention; 166 76 } 167 77 168 /**169 * @return170 * @uml.property name="jobretention"171 */172 78 public String getJobretention() { 173 79 return jobretention; 174 80 } 175 81 176 /**177 * @param autoprune178 * @uml.property name="autoprune"179 */180 82 public void setAutoprune(String autoprune) { 181 83 this.autoprune = autoprune; 182 84 } 183 85 184 /**185 * @return186 * @uml.property name="autoprune"187 */188 86 public String getAutoprune() { 189 87 return autoprune; 190 88 } 191 89 192 /**193 * @param maximumconcurrentjobs194 * @uml.property name="maximumconcurrentjobs"195 */196 90 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 197 91 this.maximumconcurrentjobs = maximumconcurrentjobs; 198 92 } 199 93 200 /**201 * @return202 * @uml.property name="maximumconcurrentjobs"203 */204 94 public String getMaximumconcurrentjobs() { 205 95 return maximumconcurrentjobs; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConfigItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class ConfigItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="id"5 */6 3 private int id; 7 /**8 * @uml.property name="ressource"9 */10 4 private String ressource; 11 /**12 * @uml.property name="key"13 */14 5 private String key; 15 /**16 * @uml.property name="value"17 */18 6 private String value; 19 7 … … 28 16 } 29 17 30 /**31 * @param value32 * @uml.property name="value"33 */34 18 public void setValue(String value) { 35 19 this.value = value; 36 20 } 37 21 38 /**39 * @return40 * @uml.property name="value"41 */42 22 public String getValue() { 43 23 return value; 44 24 } 45 25 46 /**47 * @param key48 * @uml.property name="key"49 */50 26 public void setKey(String key) { 51 27 this.key = key; 52 28 } 53 29 54 /**55 * @return56 * @uml.property name="key"57 */58 30 public String getKey() { 59 31 return key; 60 32 } 61 33 62 /**63 * @param ressource64 * @uml.property name="ressource"65 */66 34 public void setRessource(String ressource) { 67 35 this.ressource = ressource; 68 36 } 69 37 70 /**71 * @return72 * @uml.property name="ressource"73 */74 38 public String getRessource() { 75 39 return ressource; … … 80 44 } 81 45 82 /**83 * @param id84 * @uml.property name="id"85 */86 46 public void setId(int id) { 87 47 this.id = id; 88 48 } 89 49 90 /**91 * @return92 * @uml.property name="id"93 */94 50 public int getId() { 95 51 return id; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConsoleItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class ConsoleItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="password"9 */10 4 private String password; 11 /**12 * @uml.property name="jobacl"13 */14 5 private String jobacl; 15 /**16 * @uml.property name="clientacl"17 */18 6 private String clientacl; 19 /**20 * @uml.property name="storageacl"21 */22 7 private String storageacl; 23 /**24 * @uml.property name="scheduleacl"25 */26 8 private String scheduleacl; 27 /**28 * @uml.property name="poolacl"29 */30 9 private String poolacl; 31 /**32 * @uml.property name="fileSetacl"33 */34 10 private String fileSetacl; 35 /**36 * @uml.property name="catalogacl"37 */38 11 private String catalogacl; 39 /**40 * @uml.property name="commandacl"41 */42 12 private String commandacl; 43 /**44 * @uml.property name="whereacl"45 */46 13 private String whereacl; 47 14 … … 53 20 } 54 21 55 /**56 * @return57 * @uml.property name="name"58 */59 22 public String getName() { 60 23 return name; 61 24 } 62 25 63 /**64 * @param name65 * @uml.property name="name"66 */67 26 public void setName(String name) { 68 27 this.name = name; 69 28 } 70 29 71 /**72 * @return73 * @uml.property name="password"74 */75 30 public String getPassword() { 76 31 return password; 77 32 } 78 33 79 /**80 * @param password81 * @uml.property name="password"82 */83 34 public void setPassword(String password) { 84 35 this.password = password; 85 36 } 86 37 87 /**88 * @return89 * @uml.property name="jobacl"90 */91 38 public String getJobacl() { 92 39 return jobacl; 93 40 } 94 41 95 /**96 * @param jobacl97 * @uml.property name="jobacl"98 */99 42 public void setJobacl(String jobacl) { 100 43 this.jobacl = jobacl; 101 44 } 102 45 103 /**104 * @return105 * @uml.property name="clientacl"106 */107 46 public String getClientacl() { 108 47 return clientacl; 109 48 } 110 49 111 /**112 * @param clientacl113 * @uml.property name="clientacl"114 */115 50 public void setClientacl(String clientacl) { 116 51 this.clientacl = clientacl; 117 52 } 118 53 119 /**120 * @return121 * @uml.property name="storageacl"122 */123 54 public String getStorageacl() { 124 55 return storageacl; 125 56 } 126 57 127 /**128 * @param storageacl129 * @uml.property name="storageacl"130 */131 58 public void setStorageacl(String storageacl) { 132 59 this.storageacl = storageacl; 133 60 } 134 61 135 /**136 * @return137 * @uml.property name="scheduleacl"138 */139 62 public String getScheduleacl() { 140 63 return scheduleacl; 141 64 } 142 65 143 /**144 * @param scheduleacl145 * @uml.property name="scheduleacl"146 */147 66 public void setScheduleacl(String scheduleacl) { 148 67 this.scheduleacl = scheduleacl; 149 68 } 150 69 151 /**152 * @return153 * @uml.property name="poolacl"154 */155 70 public String getPoolacl() { 156 71 return poolacl; 157 72 } 158 73 159 /**160 * @param poolacl161 * @uml.property name="poolacl"162 */163 74 public void setPoolacl(String poolacl) { 164 75 this.poolacl = poolacl; 165 76 } 166 77 167 /**168 * @return169 * @uml.property name="fileSetacl"170 */171 78 public String getFileSetacl() { 172 79 return fileSetacl; 173 80 } 174 81 175 /**176 * @param fileSetacl177 * @uml.property name="fileSetacl"178 */179 82 public void setFileSetacl(String fileSetacl) { 180 83 this.fileSetacl = fileSetacl; 181 84 } 182 85 183 /**184 * @return185 * @uml.property name="catalogacl"186 */187 86 public String getCatalogacl() { 188 87 return catalogacl; 189 88 } 190 89 191 /**192 * @param catalogacl193 * @uml.property name="catalogacl"194 */195 90 public void setCatalogacl(String catalogacl) { 196 91 this.catalogacl = catalogacl; 197 92 } 198 93 199 /**200 * @return201 * @uml.property name="commandacl"202 */203 94 public String getCommandacl() { 204 95 return commandacl; 205 96 } 206 97 207 /**208 * @param commandacl209 * @uml.property name="commandacl"210 */211 98 public void setCommandacl(String commandacl) { 212 99 this.commandacl = commandacl; 213 100 } 214 101 215 /**216 * @return217 * @uml.property name="whereacl"218 */219 102 public String getWhereacl() { 220 103 return whereacl; 221 104 } 222 105 223 /**224 * @param whereacl225 * @uml.property name="whereacl"226 */227 106 public void setWhereacl(String whereacl) { 228 107 this.whereacl = whereacl; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/CounterItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class CounterItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="minimum"9 */10 4 private String minimum; 11 /**12 * @uml.property name="maximum"13 */14 5 private String maximum; 15 /**16 * @uml.property name="wrapcounter"17 */18 6 private String wrapcounter; 19 /**20 * @uml.property name="catalog"21 */22 7 private String catalog; 23 8 … … 27 12 } 28 13 29 /**30 * @return31 * @uml.property name="name"32 */33 14 public String getName() { 34 15 return name; 35 16 } 36 /**37 * @param name38 * @uml.property name="name"39 */40 17 public void setName(String name) { 41 18 this.name = name; 42 19 } 43 /**44 * @return45 * @uml.property name="minimum"46 */47 20 public String getMinimum() { 48 21 return minimum; 49 22 } 50 /**51 * @param minimum52 * @uml.property name="minimum"53 */54 23 public void setMinimum(String minimum) { 55 24 this.minimum = minimum; 56 25 } 57 /**58 * @return59 * @uml.property name="maximum"60 */61 26 public String getMaximum() { 62 27 return maximum; 63 28 } 64 /**65 * @param maximum66 * @uml.property name="maximum"67 */68 29 public void setMaximum(String maximum) { 69 30 this.maximum = maximum; 70 31 } 71 /**72 * @return73 * @uml.property name="wrapcounter"74 */75 32 public String getWrapcounter() { 76 33 return wrapcounter; 77 34 } 78 /**79 * @param wrapcounter80 * @uml.property name="wrapcounter"81 */82 35 public void setWrapcounter(String wrapcounter) { 83 36 this.wrapcounter = wrapcounter; 84 37 } 85 /**86 * @return87 * @uml.property name="catalog"88 */89 38 public String getCatalog() { 90 39 return catalog; 91 40 } 92 /**93 * @param catalog94 * @uml.property name="catalog"95 */96 41 public void setCatalog(String catalog) { 97 42 this.catalog = catalog; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/DirectorItem.java
r859 r865 29 29 } 30 30 31 /**32 * @return33 * @uml.property name="name"34 */35 31 public String getName() { 36 32 return name; 37 33 } 38 34 39 /**40 * @param name41 * @uml.property name="name"42 */43 35 public void setName(String name) { 44 36 this.name = name; 45 37 } 46 38 47 /**48 * @return49 * @uml.property name="description"50 */51 39 public String getDescription() { 52 40 return description; 53 41 } 54 42 55 /**56 * @param description57 * @uml.property name="description"58 */59 43 public void setDescription(String description) { 60 44 this.description = description; 61 45 } 62 46 63 /**64 * @return65 * @uml.property name="password"66 */67 47 public String getPassword() { 68 48 return password; 69 49 } 70 50 71 /**72 * @param password73 * @uml.property name="password"74 */75 51 public void setPassword(String password) { 76 52 this.password = password; 77 53 } 78 54 79 /**80 * @return81 * @uml.property name="messages"82 */83 55 public String getMessages() { 84 56 return messages; 85 57 } 86 58 87 /**88 * @param messages89 * @uml.property name="messages"90 */91 59 public void setMessages(String messages) { 92 60 this.messages = messages; 93 61 } 94 62 95 /**96 * @return97 * @uml.property name="workingdirectory"98 */99 63 public String getWorkingdirectory() { 100 64 return workingdirectory; 101 65 } 102 66 103 /**104 * @param workingdirectory105 * @uml.property name="workingdirectory"106 */107 67 public void setWorkingdirectory(String workingdirectory) { 108 68 this.workingdirectory = workingdirectory; 109 69 } 110 70 111 /**112 * @return113 * @uml.property name="piddirectory"114 */115 71 public String getPiddirectory() { 116 72 return piddirectory; 117 73 } 118 74 119 /**120 * @param piddirectory121 * @uml.property name="piddirectory"122 */123 75 public void setPiddirectory(String piddirectory) { 124 76 this.piddirectory = piddirectory; 125 77 } 126 78 127 /**128 * @return129 * @uml.property name="scriptsdirectory"130 */131 79 public String getScriptsdirectory() { 132 80 return scriptsdirectory; 133 81 } 134 82 135 /**136 * @param scriptsdirectory137 * @uml.property name="scriptsdirectory"138 */139 83 public void setScriptsdirectory(String scriptsdirectory) { 140 84 this.scriptsdirectory = scriptsdirectory; 141 85 } 142 86 143 /**144 * @return145 * @uml.property name="queryfile"146 */147 87 public String getQueryfile() { 148 88 return queryfile; 149 89 } 150 90 151 /**152 * @param queryfile153 * @uml.property name="queryfile"154 */155 91 public void setQueryfile(String queryfile) { 156 92 this.queryfile = queryfile; 157 93 } 158 94 159 /**160 * @return161 * @uml.property name="heartbeatinterval"162 */163 95 public String getHeartbeatinterval() { 164 96 return heartbeatinterval; 165 97 } 166 98 167 /**168 * @param heartbeatinterval169 * @uml.property name="heartbeatinterval"170 */171 99 public void setHeartbeatinterval(String heartbeatinterval) { 172 100 this.heartbeatinterval = heartbeatinterval; 173 101 } 174 102 175 /**176 * @return177 * @uml.property name="maximumconcurrentjobs"178 */179 103 public String getMaximumconcurrentjobs() { 180 104 return maximumconcurrentjobs; 181 105 } 182 106 183 /**184 * @param maximumconcurrentjobs185 * @uml.property name="maximumconcurrentjobs"186 */187 107 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 188 108 this.maximumconcurrentjobs = maximumconcurrentjobs; 189 109 } 190 110 191 /**192 * @return193 * @uml.property name="fdconnecttimeout"194 */195 111 public String getFdconnecttimeout() { 196 112 return fdconnecttimeout; 197 113 } 198 114 199 /**200 * @param fdconnecttimeout201 * @uml.property name="fdconnecttimeout"202 */203 115 public void setFdconnecttimeout(String fdconnecttimeout) { 204 116 this.fdconnecttimeout = fdconnecttimeout; 205 117 } 206 118 207 /**208 * @return209 * @uml.property name="sdconnecttimeout"210 */211 119 public String getSdconnecttimeout() { 212 120 return sdconnecttimeout; 213 121 } 214 122 215 /**216 * @param sdconnecttimeout217 * @uml.property name="sdconnecttimeout"218 */219 123 public void setSdconnecttimeout(String sdconnecttimeout) { 220 124 this.sdconnecttimeout = sdconnecttimeout; 221 125 } 222 126 223 /**224 * @return225 * @uml.property name="diraddresses"226 */227 127 public String getDiraddresses() { 228 128 return diraddresses; 229 129 } 230 130 231 /**232 * @param diraddresses233 * @uml.property name="diraddresses"234 */235 131 public void setDiraddresses(String diraddresses) { 236 132 this.diraddresses = diraddresses; 237 133 } 238 134 239 /**240 * @return241 * @uml.property name="dirport"242 */243 135 public String getDirport() { 244 136 return dirport; 245 137 } 246 138 247 /**248 * @param dirport249 * @uml.property name="dirport"250 */251 139 public void setDirport(String dirport) { 252 140 this.dirport = dirport; 253 141 } 254 142 255 /**256 * @return257 * @uml.property name="diraddress"258 */259 143 public String getDiraddress() { 260 144 return diraddress; 261 145 } 262 146 263 /**264 * @param diraddress265 * @uml.property name="diraddress"266 */267 147 public void setDiraddress(String diraddress) { 268 148 this.diraddress = diraddress; 269 149 } 270 150 271 /**272 * @return273 * @uml.property name="dirsourceaddress"274 */275 151 public String getDirsourceaddress() { 276 152 return dirsourceaddress; 277 153 } 278 154 279 /**280 * @param dirsourceaddress281 * @uml.property name="dirsourceaddress"282 */283 155 public void setDirsourceaddress(String dirsourceaddress) { 284 156 this.dirsourceaddress = dirsourceaddress; 285 157 } 286 158 287 /**288 * @return289 * @uml.property name="statisticsretention"290 */291 159 public String getStatisticsretention() { 292 160 return statisticsretention; 293 161 } 294 162 295 /**296 * @param statisticsretention297 * @uml.property name="statisticsretention"298 */299 163 public void setStatisticsretention(String statisticsretention) { 300 164 this.statisticsretention = statisticsretention; 301 165 } 302 166 303 /**304 * @return305 * @uml.property name="verid"306 */307 167 public String getVerid() { 308 168 return verid; 309 169 } 310 170 311 /**312 * @param verid313 * @uml.property name="verid"314 */315 171 public void setVerid(String verid) { 316 172 this.verid = verid; 317 173 } 318 174 319 /**320 * @return321 * @uml.property name="maxconsoleconnections"322 */323 175 public String getMaxconsoleconnections() { 324 176 return maxconsoleconnections; 325 177 } 326 178 327 /**328 * @param maxconsoleconnections329 * @uml.property name="maxconsoleconnections"330 */331 179 public void setMaxconsoleconnections(String maxconsoleconnections) { 332 180 this.maxconsoleconnections = maxconsoleconnections; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDClientItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class FDClientItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="workingdirectory"9 */10 4 private String workingdirectory; 11 /**12 * @uml.property name="piddirectory"13 */14 5 private String piddirectory; 15 /**16 * @uml.property name="heartbeatinterval"17 */18 6 private String heartbeatinterval; 19 /**20 * @uml.property name="maximumconcurrentjobs"21 */22 7 private String maximumconcurrentjobs; 23 /**24 * @uml.property name="fdaddresses"25 */26 8 private String fdaddresses; 27 /**28 * @uml.property name="fdport"29 */30 9 private String fdport; 31 /**32 * @uml.property name="fdaddress"33 */34 10 private String fdaddress; 35 /**36 * @uml.property name="fdsourceaddress"37 */38 11 private String fdsourceaddress; 39 /**40 * @uml.property name="sdconnecttimeout"41 */42 12 private String sdconnecttimeout; 43 /**44 * @uml.property name="maximumnetworkbuffersize"45 */46 13 private String maximumnetworkbuffersize; 47 14 //private String heartbeatInterval; Parameter in Dokumentation doppelt vorhanden 48 /**49 * @uml.property name="pkiencryption"50 */51 15 private String pkiencryption; 52 /**53 * @uml.property name="pkisignatures"54 */55 16 private String pkisignatures; 56 /**57 * @uml.property name="pkikeypair"58 */59 17 private String pkikeypair; 60 /**61 * @uml.property name="pkimasterkey"62 */63 18 private String pkimasterkey; 64 19 … … 69 24 setPiddirectory(piddirectory); 70 25 } 71 /**72 * @return73 * @uml.property name="name"74 */75 26 public String getName() { 76 27 return name; 77 28 } 78 /**79 * @param name80 * @uml.property name="name"81 */82 29 public void setName(String name) { 83 30 this.name = name; 84 31 } 85 /**86 * @return87 * @uml.property name="workingdirectory"88 */89 32 public String getWorkingdirectory() { 90 33 return workingdirectory; 91 34 } 92 /**93 * @param workingdirectory94 * @uml.property name="workingdirectory"95 */96 35 public void setWorkingdirectory(String workingdirectory) { 97 36 this.workingdirectory = workingdirectory; 98 37 } 99 /**100 * @return101 * @uml.property name="piddirectory"102 */103 38 public String getPiddirectory() { 104 39 return piddirectory; 105 40 } 106 /**107 * @param piddirectory108 * @uml.property name="piddirectory"109 */110 41 public void setPiddirectory(String piddirectory) { 111 42 this.piddirectory = piddirectory; 112 43 } 113 /**114 * @return115 * @uml.property name="heartbeatinterval"116 */117 44 public String getHeartbeatinterval() { 118 45 return heartbeatinterval; 119 46 } 120 /**121 * @param heartbeatinterval122 * @uml.property name="heartbeatinterval"123 */124 47 public void setHeartbeatinterval(String heartbeatinterval) { 125 48 this.heartbeatinterval = heartbeatinterval; 126 49 } 127 /**128 * @return129 * @uml.property name="maximumconcurrentjobs"130 */131 50 public String getMaximumconcurrentjobs() { 132 51 return maximumconcurrentjobs; 133 52 } 134 /**135 * @param maximumconcurrentjobs136 * @uml.property name="maximumconcurrentjobs"137 */138 53 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 139 54 this.maximumconcurrentjobs = maximumconcurrentjobs; 140 55 } 141 /**142 * @return143 * @uml.property name="fdaddresses"144 */145 56 public String getFdaddresses() { 146 57 return fdaddresses; 147 58 } 148 /**149 * @param fdaddresses150 * @uml.property name="fdaddresses"151 */152 59 public void setFdaddresses(String fdaddresses) { 153 60 this.fdaddresses = fdaddresses; 154 61 } 155 /**156 * @return157 * @uml.property name="fdport"158 */159 62 public String getFdport() { 160 63 return fdport; 161 64 } 162 /**163 * @param fdport164 * @uml.property name="fdport"165 */166 65 public void setFdport(String fdport) { 167 66 this.fdport = fdport; 168 67 } 169 /**170 * @return171 * @uml.property name="fdaddress"172 */173 68 public String getFdaddress() { 174 69 return fdaddress; 175 70 } 176 /**177 * @param fdaddress178 * @uml.property name="fdaddress"179 */180 71 public void setFdaddress(String fdaddress) { 181 72 this.fdaddress = fdaddress; 182 73 } 183 /**184 * @return185 * @uml.property name="fdsourceaddress"186 */187 74 public String getFdsourceaddress() { 188 75 return fdsourceaddress; 189 76 } 190 /**191 * @param fdsourceaddress192 * @uml.property name="fdsourceaddress"193 */194 77 public void setFdsourceaddress(String fdsourceaddress) { 195 78 this.fdsourceaddress = fdsourceaddress; 196 79 } 197 /**198 * @return199 * @uml.property name="sdconnecttimeout"200 */201 80 public String getSdconnecttimeout() { 202 81 return sdconnecttimeout; 203 82 } 204 /**205 * @param sdconnecttimeout206 * @uml.property name="sdconnecttimeout"207 */208 83 public void setSdconnecttimeout(String sdconnecttimeout) { 209 84 this.sdconnecttimeout = sdconnecttimeout; 210 85 } 211 /**212 * @return213 * @uml.property name="maximumnetworkbuffersize"214 */215 86 public String getMaximumnetworkbuffersize() { 216 87 return maximumnetworkbuffersize; 217 88 } 218 /**219 * @param maximumnetworkbuffersize220 * @uml.property name="maximumnetworkbuffersize"221 */222 89 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) { 223 90 this.maximumnetworkbuffersize = maximumnetworkbuffersize; 224 91 } 225 /**226 * @return227 * @uml.property name="pkiencryption"228 */229 92 public String getPkiencryption() { 230 93 return pkiencryption; 231 94 } 232 /**233 * @param pkiencryption234 * @uml.property name="pkiencryption"235 */236 95 public void setPkiencryption(String pkiencryption) { 237 96 this.pkiencryption = pkiencryption; 238 97 } 239 /**240 * @return241 * @uml.property name="pkisignatures"242 */243 98 public String getPkisignatures() { 244 99 return pkisignatures; 245 100 } 246 /**247 * @param pkisignatures248 * @uml.property name="pkisignatures"249 */250 101 public void setPkisignatures(String pkisignatures) { 251 102 this.pkisignatures = pkisignatures; 252 103 } 253 /**254 * @return255 * @uml.property name="pkikeypair"256 */257 104 public String getPkikeypair() { 258 105 return pkikeypair; 259 106 } 260 /**261 * @param pkikeypair262 * @uml.property name="pkikeypair"263 */264 107 public void setPkikeypair(String pkikeypair) { 265 108 this.pkikeypair = pkikeypair; 266 109 } 267 /**268 * @return269 * @uml.property name="pkimasterkey"270 */271 110 public String getPkimasterkey() { 272 111 return pkimasterkey; 273 112 } 274 /**275 * @param pkimasterkey276 * @uml.property name="pkimasterkey"277 */278 113 public void setPkimasterkey(String pkimasterkey) { 279 114 this.pkimasterkey = pkimasterkey; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDDirectorItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class FDDirectorItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="password"9 */10 4 private String password; 11 /**12 * @uml.property name="monitor"13 */14 5 private String monitor; 15 6 … … 21 12 } 22 13 23 /**24 * @return25 * @uml.property name="name"26 */27 14 public String getName() { 28 15 return name; 29 16 } 30 /**31 * @param name32 * @uml.property name="name"33 */34 17 public void setName(String name) { 35 18 this.name = name; 36 19 } 37 /**38 * @return39 * @uml.property name="password"40 */41 20 public String getPassword() { 42 21 return password; 43 22 } 44 /**45 * @param password46 * @uml.property name="password"47 */48 23 public void setPassword(String password) { 49 24 this.password = password; 50 25 } 51 /**52 * @return53 * @uml.property name="monitor"54 */55 26 public String getMonitor() { 56 27 return monitor; 57 28 } 58 /**59 * @param monitor60 * @uml.property name="monitor"61 */62 29 public void setMonitor(String monitor) { 63 30 this.monitor = monitor; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FileSetItem.java
r858 r865 2 2 3 3 public class FileSetItem extends ItemType implements UserObjectItem { 4 /**5 * @uml.property name="name"6 */7 4 private String name; 8 /**9 * @uml.property name="ignorefilesetchanges"10 */11 5 private String ignorefilesetchanges; 12 /**13 * @uml.property name="enablevss"14 */15 6 private String enablevss; 16 /**17 * @uml.property name="include"18 */19 7 private String include; 20 /**21 * @uml.property name="exclude"22 */23 8 private String exclude; 24 9 25 10 public FileSetItem() {} 26 11 27 /**28 * @return29 * @uml.property name="name"30 */31 12 public String getName() { 32 13 return name; 33 14 } 34 15 35 /**36 * @param name37 * @uml.property name="name"38 */39 16 public void setName(String name) { 40 17 this.name = name; … … 49 26 } 50 27 51 /**52 * @return53 * @uml.property name="enablevss"54 */55 28 public String getEnablevss() { 56 29 return enablevss; 57 30 } 58 31 59 /**60 * @param enablevss61 * @uml.property name="enablevss"62 */63 32 public void setEnablevss(String enablevss) { 64 33 this.enablevss = enablevss; 65 34 } 66 35 67 /**68 * @return69 * @uml.property name="include"70 */71 36 public String getInclude() { 72 37 return include; 73 38 } 74 39 75 /**76 * @param include77 * @uml.property name="include"78 */79 40 public void setInclude(String include) { 80 41 this.include = include; 81 42 } 82 43 83 /**84 * @return85 * @uml.property name="exclude"86 */87 44 public String getExclude() { 88 45 return exclude; 89 46 } 90 47 91 /**92 * @param exclude93 * @uml.property name="exclude"94 */95 48 public void setExclude(String exclude) { 96 49 this.exclude = exclude; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ItemType.java
r848 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 /** 3 * base class for all resource items. ItemType contains the ResourceInfo attributes. 4 * @author tgoecke 5 * 6 */ 3 7 public abstract class ItemType implements UserObjectItem{ 4 8 private String ResType; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobDefsItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class JobDefsItem extends ItemType implements UserObjectItem{ 3 /**4 * @return5 * @uml.property name="name"6 */7 3 public String getName() { 8 4 return name; 9 5 } 10 /**11 * @param name12 * @uml.property name="name"13 */14 6 public void setName(String name) { 15 7 this.name = name; 16 8 } 17 /**18 * @return19 * @uml.property name="enabled"20 */21 9 public String getEnabled() { 22 10 return enabled; 23 11 } 24 /**25 * @param enabled26 * @uml.property name="enabled"27 */28 12 public void setEnabled(String enabled) { 29 13 this.enabled = enabled; 30 14 } 31 /**32 * @return33 * @uml.property name="type"34 */35 15 public String getType() { 36 16 return type; 37 17 } 38 /**39 * @param type40 * @uml.property name="type"41 */42 18 public void setType(String type) { 43 19 this.type = type; 44 20 } 45 /**46 * @return47 * @uml.property name="level"48 */49 21 public String getLevel() { 50 22 return level; 51 23 } 52 /**53 * @param level54 * @uml.property name="level"55 */56 24 public void setLevel(String level) { 57 25 this.level = level; 58 26 } 59 /**60 * @return61 * @uml.property name="accurate"62 */63 27 public String getAccurate() { 64 28 return accurate; 65 29 } 66 /**67 * @param accurate68 * @uml.property name="accurate"69 */70 30 public void setAccurate(String accurate) { 71 31 this.accurate = accurate; 72 32 } 73 /**74 * @return75 * @uml.property name="verifyjob"76 */77 33 public String getVerifyjob() { 78 34 return verifyjob; 79 35 } 80 /**81 * @param verifyjob82 * @uml.property name="verifyjob"83 */84 36 public void setVerifyjob(String verifyjob) { 85 37 this.verifyjob = verifyjob; 86 38 } 87 /**88 * @return89 * @uml.property name="jobdefs"90 */91 39 public String getJobdefs() { 92 40 return jobdefs; 93 41 } 94 /**95 * @param jobdefs96 * @uml.property name="jobdefs"97 */98 42 public void setJobdefs(String jobdefs) { 99 43 this.jobdefs = jobdefs; 100 44 } 101 /**102 * @return103 * @uml.property name="bootstrap"104 */105 45 public String getBootstrap() { 106 46 return bootstrap; 107 47 } 108 /**109 * @param bootstrap110 * @uml.property name="bootstrap"111 */112 48 public void setBootstrap(String bootstrap) { 113 49 this.bootstrap = bootstrap; 114 50 } 115 /**116 * @return117 * @uml.property name="writebootstrap"118 */119 51 public String getWritebootstrap() { 120 52 return writebootstrap; 121 53 } 122 /**123 * @param writebootstrap124 * @uml.property name="writebootstrap"125 */126 54 public void setWritebootstrap(String writebootstrap) { 127 55 this.writebootstrap = writebootstrap; 128 56 } 129 /**130 * @return131 * @uml.property name="client"132 */133 57 public String getClient() { 134 58 return client; 135 59 } 136 /**137 * @param client138 * @uml.property name="client"139 */140 60 public void setClient(String client) { 141 61 this.client = client; 142 62 } 143 /**144 * @return145 * @uml.property name="fileset"146 */147 63 public String getFileset() { 148 64 return fileset; 149 65 } 150 /**151 * @param fileset152 * @uml.property name="fileset"153 */154 66 public void setFileset(String fileset) { 155 67 this.fileset = fileset; 156 68 } 157 /**158 * @return159 * @uml.property name="messages"160 */161 69 public String getMessages() { 162 70 return messages; 163 71 } 164 /**165 * @param messages166 * @uml.property name="messages"167 */168 72 public void setMessages(String messages) { 169 73 this.messages = messages; 170 74 } 171 /**172 * @return173 * @uml.property name="pool"174 */175 75 public String getPool() { 176 76 return pool; 177 77 } 178 /**179 * @param pool180 * @uml.property name="pool"181 */182 78 public void setPool(String pool) { 183 79 this.pool = pool; 184 80 } 185 /**186 * @return187 * @uml.property name="fullbackuppool"188 */189 81 public String getFullbackuppool() { 190 82 return fullbackuppool; 191 83 } 192 /**193 * @param fullbackuppool194 * @uml.property name="fullbackuppool"195 */196 84 public void setFullbackuppool(String fullbackuppool) { 197 85 this.fullbackuppool = fullbackuppool; 198 86 } 199 /**200 * @return201 * @uml.property name="differentialbackuppool"202 */203 87 public String getDifferentialbackuppool() { 204 88 return differentialbackuppool; 205 89 } 206 /**207 * @param differentialbackuppool208 * @uml.property name="differentialbackuppool"209 */210 90 public void setDifferentialbackuppool(String differentialbackuppool) { 211 91 this.differentialbackuppool = differentialbackuppool; 212 92 } 213 /**214 * @return215 * @uml.property name="incrementalbackuppool"216 */217 93 public String getIncrementalbackuppool() { 218 94 return incrementalbackuppool; 219 95 } 220 /**221 * @param incrementalbackuppool222 * @uml.property name="incrementalbackuppool"223 */224 96 public void setIncrementalbackuppool(String incrementalbackuppool) { 225 97 this.incrementalbackuppool = incrementalbackuppool; 226 98 } 227 /**228 * @return229 * @uml.property name="schedule"230 */231 99 public String getSchedule() { 232 100 return schedule; 233 101 } 234 /**235 * @param schedule236 * @uml.property name="schedule"237 */238 102 public void setSchedule(String schedule) { 239 103 this.schedule = schedule; 240 104 } 241 /**242 * @return243 * @uml.property name="storage"244 */245 105 public String getStorage() { 246 106 return storage; 247 107 } 248 /**249 * @param storage250 * @uml.property name="storage"251 */252 108 public void setStorage(String storage) { 253 109 this.storage = storage; 254 110 } 255 /**256 * @return257 * @uml.property name="maxstartdelay"258 */259 111 public String getMaxstartdelay() { 260 112 return maxstartdelay; 261 113 } 262 /**263 * @param maxstartdelay264 * @uml.property name="maxstartdelay"265 */266 114 public void setMaxstartdelay(String maxstartdelay) { 267 115 this.maxstartdelay = maxstartdelay; 268 116 } 269 /**270 * @return271 * @uml.property name="maxruntime"272 */273 117 public String getMaxruntime() { 274 118 return maxruntime; 275 119 } 276 /**277 * @param maxruntime278 * @uml.property name="maxruntime"279 */280 120 public void setMaxruntime(String maxruntime) { 281 121 this.maxruntime = maxruntime; 282 122 } 283 /**284 * @return285 * @uml.property name="incrementaldifferentialmaxwaittime"286 */287 123 public String getIncrementaldifferentialmaxwaittime() { 288 124 return incrementaldifferentialmaxwaittime; 289 125 } 290 /**291 * @param incrementaldifferentialmaxwaittime292 * @uml.property name="incrementaldifferentialmaxwaittime"293 */294 126 public void setIncrementaldifferentialmaxwaittime( 295 127 String incrementaldifferentialmaxwaittime) { 296 128 this.incrementaldifferentialmaxwaittime = incrementaldifferentialmaxwaittime; 297 129 } 298 /**299 * @return300 * @uml.property name="incrementalmaxruntime"301 */302 130 public String getIncrementalmaxruntime() { 303 131 return incrementalmaxruntime; 304 132 } 305 /**306 * @param incrementalmaxruntime307 * @uml.property name="incrementalmaxruntime"308 */309 133 public void setIncrementalmaxruntime(String incrementalmaxruntime) { 310 134 this.incrementalmaxruntime = incrementalmaxruntime; 311 135 } 312 /**313 * @return314 * @uml.property name="differentialmaxwaittime"315 */316 136 public String getDifferentialmaxwaittime() { 317 137 return differentialmaxwaittime; 318 138 } 319 /**320 * @param differentialmaxwaittime321 * @uml.property name="differentialmaxwaittime"322 */323 139 public void setDifferentialmaxwaittime(String differentialmaxwaittime) { 324 140 this.differentialmaxwaittime = differentialmaxwaittime; 325 141 } 326 /**327 * @return328 * @uml.property name="maxrunschedtime"329 */330 142 public String getMaxrunschedtime() { 331 143 return maxrunschedtime; 332 144 } 333 /**334 * @param maxrunschedtime335 * @uml.property name="maxrunschedtime"336 */337 145 public void setMaxrunschedtime(String maxrunschedtime) { 338 146 this.maxrunschedtime = maxrunschedtime; 339 147 } 340 /**341 * @return342 * @uml.property name="maxwaittime"343 */344 148 public String getMaxwaittime() { 345 149 return maxwaittime; 346 150 } 347 /**348 * @param maxwaittime349 * @uml.property name="maxwaittime"350 */351 151 public void setMaxwaittime(String maxwaittime) { 352 152 this.maxwaittime = maxwaittime; 353 153 } 354 /**355 * @return356 * @uml.property name="maxfullinterval"357 */358 154 public String getMaxfullinterval() { 359 155 return maxfullinterval; 360 156 } 361 /**362 * @param maxfullinterval363 * @uml.property name="maxfullinterval"364 */365 157 public void setMaxfullinterval(String maxfullinterval) { 366 158 this.maxfullinterval = maxfullinterval; 367 159 } 368 /**369 * @return370 * @uml.property name="prefermountedvolumes"371 */372 160 public String getPrefermountedvolumes() { 373 161 return prefermountedvolumes; 374 162 } 375 /**376 * @param prefermountedvolumes377 * @uml.property name="prefermountedvolumes"378 */379 163 public void setPrefermountedvolumes(String prefermountedvolumes) { 380 164 this.prefermountedvolumes = prefermountedvolumes; 381 165 } 382 /**383 * @return384 * @uml.property name="prunejobs"385 */386 166 public String getPrunejobs() { 387 167 return prunejobs; 388 168 } 389 /**390 * @param prunejobs391 * @uml.property name="prunejobs"392 */393 169 public void setPrunejobs(String prunejobs) { 394 170 this.prunejobs = prunejobs; 395 171 } 396 /**397 * @return398 * @uml.property name="prunefiles"399 */400 172 public String getPrunefiles() { 401 173 return prunefiles; 402 174 } 403 /**404 * @param prunefiles405 * @uml.property name="prunefiles"406 */407 175 public void setPrunefiles(String prunefiles) { 408 176 this.prunefiles = prunefiles; 409 177 } 410 /**411 * @return412 * @uml.property name="prunevolumes"413 */414 178 public String getPrunevolumes() { 415 179 return prunevolumes; 416 180 } 417 /**418 * @param prunevolumes419 * @uml.property name="prunevolumes"420 */421 181 public void setPrunevolumes(String prunevolumes) { 422 182 this.prunevolumes = prunevolumes; 423 183 } 424 /**425 * @return426 * @uml.property name="runscript"427 */428 184 public String getRunscript() { 429 185 return runscript; 430 186 } 431 /**432 * @param runscript433 * @uml.property name="runscript"434 */435 187 public void setRunscript(String runscript) { 436 188 this.runscript = runscript; 437 189 } 438 /**439 * @return440 * @uml.property name="runbeforejob"441 */442 190 public String getRunbeforejob() { 443 191 return runbeforejob; 444 192 } 445 /**446 * @param runbeforejob447 * @uml.property name="runbeforejob"448 */449 193 public void setRunbeforejob(String runbeforejob) { 450 194 this.runbeforejob = runbeforejob; 451 195 } 452 /**453 * @return454 * @uml.property name="runafterjob"455 */456 196 public String getRunafterjob() { 457 197 return runafterjob; 458 198 } 459 /**460 * @param runafterjob461 * @uml.property name="runafterjob"462 */463 199 public void setRunafterjob(String runafterjob) { 464 200 this.runafterjob = runafterjob; 465 201 } 466 /**467 * @return468 * @uml.property name="runafterfailedjob"469 */470 202 public String getRunafterfailedjob() { 471 203 return runafterfailedjob; 472 204 } 473 /**474 * @param runafterfailedjob475 * @uml.property name="runafterfailedjob"476 */477 205 public void setRunafterfailedjob(String runafterfailedjob) { 478 206 this.runafterfailedjob = runafterfailedjob; 479 207 } 480 /**481 * @return482 * @uml.property name="clientrunbeforejob"483 */484 208 public String getClientrunbeforejob() { 485 209 return clientrunbeforejob; 486 210 } 487 /**488 * @param clientrunbeforejob489 * @uml.property name="clientrunbeforejob"490 */491 211 public void setClientrunbeforejob(String clientrunbeforejob) { 492 212 this.clientrunbeforejob = clientrunbeforejob; 493 213 } 494 /**495 * @return496 * @uml.property name="clientrunafterjob"497 */498 214 public String getClientrunafterjob() { 499 215 return clientrunafterjob; 500 216 } 501 /**502 * @param clientrunafterjob503 * @uml.property name="clientrunafterjob"504 */505 217 public void setClientrunafterjob(String clientrunafterjob) { 506 218 this.clientrunafterjob = clientrunafterjob; 507 219 } 508 /**509 * @return510 * @uml.property name="rerunfailedlevels"511 */512 220 public String getRerunfailedlevels() { 513 221 return rerunfailedlevels; 514 222 } 515 /**516 * @param rerunfailedlevels517 * @uml.property name="rerunfailedlevels"518 */519 223 public void setRerunfailedlevels(String rerunfailedlevels) { 520 224 this.rerunfailedlevels = rerunfailedlevels; 521 225 } 522 /**523 * @return524 * @uml.property name="spooldata"525 */526 226 public String getSpooldata() { 527 227 return spooldata; 528 228 } 529 /**530 * @param spooldata531 * @uml.property name="spooldata"532 */533 229 public void setSpooldata(String spooldata) { 534 230 this.spooldata = spooldata; 535 231 } 536 /**537 * @return538 * @uml.property name="spoolattributes"539 */540 232 public String getSpoolattributes() { 541 233 return spoolattributes; 542 234 } 543 /**544 * @param spoolattributes545 * @uml.property name="spoolattributes"546 */547 235 public void setSpoolattributes(String spoolattributes) { 548 236 this.spoolattributes = spoolattributes; 549 237 } 550 /**551 * @return552 * @uml.property name="where"553 */554 238 public String getWhere() { 555 239 return where; 556 240 } 557 /**558 * @param where559 * @uml.property name="where"560 */561 241 public void setWhere(String where) { 562 242 this.where = where; 563 243 } 564 /**565 * @return566 * @uml.property name="addprefix"567 */568 244 public String getAddprefix() { 569 245 return addprefix; 570 246 } 571 /**572 * @param addprefix573 * @uml.property name="addprefix"574 */575 247 public void setAddprefix(String addprefix) { 576 248 this.addprefix = addprefix; 577 249 } 578 /**579 * @return580 * @uml.property name="addsuffix"581 */582 250 public String getAddsuffix() { 583 251 return addsuffix; 584 252 } 585 /**586 * @param addsuffix587 * @uml.property name="addsuffix"588 */589 253 public void setAddsuffix(String addsuffix) { 590 254 this.addsuffix = addsuffix; 591 255 } 592 /**593 * @return594 * @uml.property name="stripprefix"595 */596 256 public String getStripprefix() { 597 257 return stripprefix; 598 258 } 599 /**600 * @param stripprefix601 * @uml.property name="stripprefix"602 */603 259 public void setStripprefix(String stripprefix) { 604 260 this.stripprefix = stripprefix; 605 261 } 606 /**607 * @return608 * @uml.property name="regexwhere"609 */610 262 public String getRegexwhere() { 611 263 return regexwhere; 612 264 } 613 /**614 * @param regexwhere615 * @uml.property name="regexwhere"616 */617 265 public void setRegexwhere(String regexwhere) { 618 266 this.regexwhere = regexwhere; 619 267 } 620 /**621 * @return622 * @uml.property name="replace"623 */624 268 public String getReplace() { 625 269 return replace; 626 270 } 627 /**628 * @param replace629 * @uml.property name="replace"630 */631 271 public void setReplace(String replace) { 632 272 this.replace = replace; 633 273 } 634 /**635 * @return636 * @uml.property name="prefixlinks"637 */638 274 public String getPrefixlinks() { 639 275 return prefixlinks; 640 276 } 641 /**642 * @param prefixlinks643 * @uml.property name="prefixlinks"644 */645 277 public void setPrefixlinks(String prefixlinks) { 646 278 this.prefixlinks = prefixlinks; 647 279 } 648 /**649 * @return650 * @uml.property name="maximumconcurrentjobs"651 */652 280 public String getMaximumconcurrentjobs() { 653 281 return maximumconcurrentjobs; 654 282 } 655 /**656 * @param maximumconcurrentjobs657 * @uml.property name="maximumconcurrentjobs"658 */659 283 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 660 284 this.maximumconcurrentjobs = maximumconcurrentjobs; 661 285 } 662 /**663 * @return664 * @uml.property name="rescheduleonerror"665 */666 286 public String getRescheduleonerror() { 667 287 return rescheduleonerror; 668 288 } 669 /**670 * @param rescheduleonerror671 * @uml.property name="rescheduleonerror"672 */673 289 public void setRescheduleonerror(String rescheduleonerror) { 674 290 this.rescheduleonerror = rescheduleonerror; 675 291 } 676 /**677 * @return678 * @uml.property name="rescheduleinterval"679 */680 292 public String getRescheduleinterval() { 681 293 return rescheduleinterval; 682 294 } 683 /**684 * @param rescheduleinterval685 * @uml.property name="rescheduleinterval"686 */687 295 public void setRescheduleinterval(String rescheduleinterval) { 688 296 this.rescheduleinterval = rescheduleinterval; 689 297 } 690 /**691 * @return692 * @uml.property name="rescheduletimes"693 */694 298 public String getRescheduletimes() { 695 299 return rescheduletimes; 696 300 } 697 /**698 * @param rescheduletimes699 * @uml.property name="rescheduletimes"700 */701 301 public void setRescheduletimes(String rescheduletimes) { 702 302 this.rescheduletimes = rescheduletimes; 703 303 } 704 /**705 * @return706 * @uml.property name="allowduplicatejobs"707 */708 304 public String getAllowduplicatejobs() { 709 305 return allowduplicatejobs; 710 306 } 711 /**712 * @param allowduplicatejobs713 * @uml.property name="allowduplicatejobs"714 */715 307 public void setAllowduplicatejobs(String allowduplicatejobs) { 716 308 this.allowduplicatejobs = allowduplicatejobs; 717 309 } 718 /**719 * @return720 * @uml.property name="allowhigherduplicates"721 */722 310 public String getAllowhigherduplicates() { 723 311 return allowhigherduplicates; 724 312 } 725 /**726 * @param allowhigherduplicates727 * @uml.property name="allowhigherduplicates"728 */729 313 public void setAllowhigherduplicates(String allowhigherduplicates) { 730 314 this.allowhigherduplicates = allowhigherduplicates; 731 315 } 732 /**733 * @return734 * @uml.property name="cancellowerlevelduplicates"735 */736 316 public String getCancellowerlevelduplicates() { 737 317 return cancellowerlevelduplicates; 738 318 } 739 /**740 * @param cancellowerlevelduplicates741 * @uml.property name="cancellowerlevelduplicates"742 */743 319 public void setCancellowerlevelduplicates(String cancellowerlevelduplicates) { 744 320 this.cancellowerlevelduplicates = cancellowerlevelduplicates; 745 321 } 746 /**747 * @return748 * @uml.property name="cancelqueuedduplicates"749 */750 322 public String getCancelqueuedduplicates() { 751 323 return cancelqueuedduplicates; 752 324 } 753 /**754 * @param cancelqueuedduplicates755 * @uml.property name="cancelqueuedduplicates"756 */757 325 public void setCancelqueuedduplicates(String cancelqueuedduplicates) { 758 326 this.cancelqueuedduplicates = cancelqueuedduplicates; 759 327 } 760 /**761 * @return762 * @uml.property name="cancelrunningduplicates"763 */764 328 public String getCancelrunningduplicates() { 765 329 return cancelrunningduplicates; 766 330 } 767 /**768 * @param cancelrunningduplicates769 * @uml.property name="cancelrunningduplicates"770 */771 331 public void setCancelrunningduplicates(String cancelrunningduplicates) { 772 332 this.cancelrunningduplicates = cancelrunningduplicates; 773 333 } 774 /**775 * @return776 * @uml.property name="duplicatejobproximity"777 */778 334 public String getDuplicatejobproximity() { 779 335 return duplicatejobproximity; 780 336 } 781 /**782 * @param duplicatejobproximity783 * @uml.property name="duplicatejobproximity"784 */785 337 public void setDuplicatejobproximity(String duplicatejobproximity) { 786 338 this.duplicatejobproximity = duplicatejobproximity; 787 339 } 788 /**789 * @return790 * @uml.property name="run"791 */792 340 public String getRun() { 793 341 return run; 794 342 } 795 /**796 * @param run797 * @uml.property name="run"798 */799 343 public void setRun(String run) { 800 344 this.run = run; 801 345 } 802 /**803 * @return804 * @uml.property name="priority"805 */806 346 public String getPriority() { 807 347 return priority; 808 348 } 809 /**810 * @param priority811 * @uml.property name="priority"812 */813 349 public void setPriority(String priority) { 814 350 this.priority = priority; 815 351 } 816 /**817 * @return818 * @uml.property name="allowmixedpriority"819 */820 352 public String getAllowmixedpriority() { 821 353 return allowmixedpriority; 822 354 } 823 /**824 * @param allowmixedpriority825 * @uml.property name="allowmixedpriority"826 */827 355 public void setAllowmixedpriority(String allowmixedpriority) { 828 356 this.allowmixedpriority = allowmixedpriority; 829 357 } 830 /**831 * @return832 * @uml.property name="writepartafterjob"833 */834 358 public String getWritepartafterjob() { 835 359 return writepartafterjob; 836 360 } 837 /**838 * @param writepartafterjob839 * @uml.property name="writepartafterjob"840 */841 361 public void setWritepartafterjob(String writepartafterjob) { 842 362 this.writepartafterjob = writepartafterjob; 843 363 } 844 /**845 * @uml.property name="name"846 */847 364 private String name; 848 /**849 * @uml.property name="enabled"850 */851 365 private String enabled; 852 /**853 * @uml.property name="type"854 */855 366 private String type; 856 /**857 * @uml.property name="level"858 */859 367 private String level; 860 /**861 * @uml.property name="accurate"862 */863 368 private String accurate; 864 /**865 * @uml.property name="verifyjob"866 */867 369 private String verifyjob; 868 /**869 * @uml.property name="jobdefs"870 */871 370 private String jobdefs; 872 /**873 * @uml.property name="bootstrap"874 */875 371 private String bootstrap; 876 /**877 * @uml.property name="writebootstrap"878 */879 372 private String writebootstrap; 880 /**881 * @uml.property name="client"882 */883 373 private String client; 884 /**885 * @uml.property name="fileset"886 */887 374 private String fileset; 888 /**889 * @uml.property name="messages"890 */891 375 private String messages; 892 /**893 * @uml.property name="pool"894 */895 376 private String pool; 896 /**897 * @uml.property name="fullbackuppool"898 */899 377 private String fullbackuppool; 900 /**901 * @uml.property name="differentialbackuppool"902 */903 378 private String differentialbackuppool; 904 /**905 * @uml.property name="incrementalbackuppool"906 */907 379 private String incrementalbackuppool; 908 /**909 * @uml.property name="schedule"910 */911 380 private String schedule; 912 /**913 * @uml.property name="storage"914 */915 381 private String storage; 916 /**917 * @uml.property name="maxstartdelay"918 */919 382 private String maxstartdelay; 920 /**921 * @uml.property name="maxruntime"922 */923 383 private String maxruntime; 924 /**925 * @uml.property name="incrementaldifferentialmaxwaittime"926 */927 384 private String incrementaldifferentialmaxwaittime; 928 /**929 * @uml.property name="incrementalmaxruntime"930 */931 385 private String incrementalmaxruntime; 932 /**933 * @uml.property name="differentialmaxwaittime"934 */935 386 private String differentialmaxwaittime; 936 /**937 * @uml.property name="maxrunschedtime"938 */939 387 private String maxrunschedtime; 940 /**941 * @uml.property name="maxwaittime"942 */943 388 private String maxwaittime; 944 /**945 * @uml.property name="maxfullinterval"946 */947 389 private String maxfullinterval; 948 /**949 * @uml.property name="prefermountedvolumes"950 */951 390 private String prefermountedvolumes; 952 /**953 * @uml.property name="prunejobs"954 */955 391 private String prunejobs; 956 /**957 * @uml.property name="prunefiles"958 */959 392 private String prunefiles; 960 /**961 * @uml.property name="prunevolumes"962 */963 393 private String prunevolumes; 964 /**965 * @uml.property name="runscript"966 */967 394 private String runscript; 968 /**969 * @uml.property name="runbeforejob"970 */971 395 private String runbeforejob; 972 /**973 * @uml.property name="runafterjob"974 */975 396 private String runafterjob; 976 /**977 * @uml.property name="runafterfailedjob"978 */979 397 private String runafterfailedjob; 980 /**981 * @uml.property name="clientrunbeforejob"982 */983 398 private String clientrunbeforejob; 984 /**985 * @uml.property name="clientrunafterjob"986 */987 399 private String clientrunafterjob; 988 /**989 * @uml.property name="rerunfailedlevels"990 */991 400 private String rerunfailedlevels; 992 /**993 * @uml.property name="spooldata"994 */995 401 private String spooldata; 996 /**997 * @uml.property name="spoolattributes"998 */999 402 private String spoolattributes; 1000 /**1001 * @uml.property name="where"1002 */1003 403 private String where; 1004 /**1005 * @uml.property name="addprefix"1006 */1007 404 private String addprefix; 1008 /**1009 * @uml.property name="addsuffix"1010 */1011 405 private String addsuffix; 1012 /**1013 * @uml.property name="stripprefix"1014 */1015 406 private String stripprefix; 1016 /**1017 * @uml.property name="regexwhere"1018 */1019 407 private String regexwhere; 1020 /**1021 * @uml.property name="replace"1022 */1023 408 private String replace; 1024 /**1025 * @uml.property name="prefixlinks"1026 */1027 409 private String prefixlinks; 1028 /**1029 * @uml.property name="maximumconcurrentjobs"1030 */1031 410 private String maximumconcurrentjobs; 1032 /**1033 * @uml.property name="rescheduleonerror"1034 */1035 411 private String rescheduleonerror; 1036 /**1037 * @uml.property name="rescheduleinterval"1038 */1039 412 private String rescheduleinterval; 1040 /**1041 * @uml.property name="rescheduletimes"1042 */1043 413 private String rescheduletimes; 1044 /**1045 * @uml.property name="allowduplicatejobs"1046 */1047 414 private String allowduplicatejobs; 1048 /**1049 * @uml.property name="allowhigherduplicates"1050 */1051 415 private String allowhigherduplicates; 1052 /**1053 * @uml.property name="cancellowerlevelduplicates"1054 */1055 416 private String cancellowerlevelduplicates; 1056 /**1057 * @uml.property name="cancelqueuedduplicates"1058 */1059 417 private String cancelqueuedduplicates; 1060 /**1061 * @uml.property name="cancelrunningduplicates"1062 */1063 418 private String cancelrunningduplicates; 1064 /**1065 * @uml.property name="duplicatejobproximity"1066 */1067 419 private String duplicatejobproximity; 1068 /**1069 * @uml.property name="run"1070 */1071 420 private String run; 1072 /**1073 * @uml.property name="priority"1074 */1075 421 private String priority; 1076 /**1077 * @uml.property name="allowmixedpriority"1078 */1079 422 private String allowmixedpriority; 1080 /**1081 * @uml.property name="writepartafterjob"1082 */1083 423 private String writepartafterjob; 1084 424 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobItem.java
r858 r865 2 2 public class JobItem extends ItemType implements UserObjectItem{ 3 3 4 /**5 * @uml.property name="name"6 */7 4 private String name; 8 /**9 * @uml.property name="enabled"10 */11 5 private String enabled; 12 /**13 * @uml.property name="description"14 */15 6 private String description; 16 /**17 * @uml.property name="type"18 */19 7 private String type; 20 /**21 * @uml.property name="level"22 */23 8 private String level; 24 /**25 * @uml.property name="accurate"26 */27 9 private String accurate; 28 /**29 * @uml.property name="verifyjob"30 */31 10 private String verifyjob; 32 /**33 * @uml.property name="jobdefs"34 */35 11 private String jobdefs; 36 /**37 * @uml.property name="bootstrap"38 */39 12 private String bootstrap; 40 /**41 * @uml.property name="writebootstrap"42 */43 13 private String writebootstrap; 44 /**45 * @uml.property name="client"46 */47 14 private String client; 48 /**49 * @uml.property name="fileset"50 */51 15 private String fileset; 52 /**53 * @uml.property name="messages"54 */55 16 private String messages; 56 /**57 * @uml.property name="pool"58 */59 17 private String pool; 60 /**61 * @uml.property name="fullbackuppool"62 */63 18 private String fullbackuppool; 64 /**65 * @uml.property name="differentialbackuppool"66 */67 19 private String differentialbackuppool; 68 /**69 * @uml.property name="incrementalbackuppool"70 */71 20 private String incrementalbackuppool; 72 /**73 * @uml.property name="schedule"74 */75 21 private String schedule; 76 /**77 * @uml.property name="storage"78 */79 22 private String storage; 80 /**81 * @uml.property name="maxstartdelay"82 */83 23 private String maxstartdelay; 84 /**85 * @uml.property name="maxruntime"86 */87 24 private String maxruntime; 88 /**89 * @uml.property name="incrementaldifferentialmaxwaittime"90 */91 25 private String incrementaldifferentialmaxwaittime; 92 /**93 * @uml.property name="incrementalmaxruntime"94 */95 26 private String incrementalmaxruntime; 96 /**97 * @uml.property name="differentialmaxwaittime"98 */99 27 private String differentialmaxwaittime; 100 /**101 * @uml.property name="maxrunschedtime"102 */103 28 private String maxrunschedtime; 104 /**105 * @uml.property name="maxwaittime"106 */107 29 private String maxwaittime; 108 /**109 * @uml.property name="maxfullinterval"110 */111 30 private String maxfullinterval; 112 /**113 * @uml.property name="prefermountedvolumes"114 */115 31 private String prefermountedvolumes; 116 /**117 * @uml.property name="prunejobs"118 */119 32 private String prunejobs; 120 /**121 * @uml.property name="prunefiles"122 */123 33 private String prunefiles; 124 /**125 * @uml.property name="prunevolumes"126 */127 34 private String prunevolumes; 128 /**129 * @uml.property name="runscript"130 */131 35 private String runscript; 132 /**133 * @uml.property name="runbeforejob"134 */135 36 private String runbeforejob; 136 /**137 * @uml.property name="runafterjob"138 */139 37 private String runafterjob; 140 /**141 * @uml.property name="runafterfailedjob"142 */143 38 private String runafterfailedjob; 144 /**145 * @uml.property name="clientrunbeforejob"146 */147 39 private String clientrunbeforejob; 148 /**149 * @uml.property name="clientrunafterjob"150 */151 40 private String clientrunafterjob; 152 /**153 * @uml.property name="rerunfailedlevels"154 */155 41 private String rerunfailedlevels; 156 /**157 * @uml.property name="spooldata"158 */159 42 private String spooldata; 160 /**161 * @uml.property name="spoolattributes"162 */163 43 private String spoolattributes; 164 /**165 * @uml.property name="where"166 */167 44 private String where; 168 /**169 * @uml.property name="addprefix"170 */171 45 private String addprefix; 172 /**173 * @uml.property name="addsuffix"174 */175 46 private String addsuffix; 176 /**177 * @uml.property name="stripprefix"178 */179 47 private String stripprefix; 180 /**181 * @uml.property name="regexwhere"182 */183 48 private String regexwhere; 184 /**185 * @uml.property name="replace"186 */187 49 private String replace; 188 /**189 * @uml.property name="prefixlinks"190 */191 50 private String prefixlinks; 192 /**193 * @uml.property name="maximumconcurrentjobs"194 */195 51 private String maximumconcurrentjobs; 196 /**197 * @uml.property name="rescheduleonerror"198 */199 52 private String rescheduleonerror; 200 /**201 * @uml.property name="rescheduleinterval"202 */203 53 private String rescheduleinterval; 204 /**205 * @uml.property name="rescheduletimes"206 */207 54 private String rescheduletimes; 208 /**209 * @uml.property name="allowduplicatejobs"210 */211 55 private String allowduplicatejobs; 212 /**213 * @uml.property name="allowhigherduplicates"214 */215 56 private String allowhigherduplicates; 216 /**217 * @uml.property name="cancellowerlevelduplicates"218 */219 57 private String cancellowerlevelduplicates; 220 /**221 * @uml.property name="cancelqueuedduplicates"222 */223 58 private String cancelqueuedduplicates; 224 /**225 * @uml.property name="cancelrunningduplicates"226 */227 59 private String cancelrunningduplicates; 228 /**229 * @uml.property name="duplicatejobproximity"230 */231 60 private String duplicatejobproximity; 232 /**233 * @uml.property name="run"234 */235 61 private String run; 236 /**237 * @uml.property name="priority"238 */239 62 private String priority; 240 /**241 * @uml.property name="allowmixedpriority"242 */243 63 private String allowmixedpriority; 244 /**245 * @uml.property name="writepartafterjob"246 */247 64 private String writepartafterjob; 248 65 … … 251 68 String messages, String pool, String storage, String priority, String writebootstrap){ 252 69 } 253 /**254 * @return255 * @uml.property name="name"256 */257 70 public String getName() { 258 71 return name; 259 72 } 260 /**261 * @param name262 * @uml.property name="name"263 */264 73 public void setName(String name) { 265 74 this.name = name; 266 75 } 267 /**268 * @return269 * @uml.property name="enabled"270 */271 76 public String getEnabled() { 272 77 return enabled; 273 78 } 274 /**275 * @param enabled276 * @uml.property name="enabled"277 */278 79 public void setEnabled(String enabled) { 279 80 this.enabled = enabled; 280 81 } 281 /**282 * @return283 * @uml.property name="description"284 */285 82 public String getDescription() { 286 83 return description; 287 84 } 288 /**289 * @param description290 * @uml.property name="description"291 */292 85 public void setDescription(String description) { 293 86 this.description = description; 294 87 } 295 /**296 * @return297 * @uml.property name="type"298 */299 88 public String getType() { 300 89 return type; 301 90 } 302 /**303 * @param type304 * @uml.property name="type"305 */306 91 public void setType(String type) { 307 92 this.type = type; 308 93 } 309 /**310 * @return311 * @uml.property name="level"312 */313 94 public String getLevel() { 314 95 return level; 315 96 } 316 /**317 * @param level318 * @uml.property name="level"319 */320 97 public void setLevel(String level) { 321 98 this.level = level; 322 99 } 323 /**324 * @return325 * @uml.property name="accurate"326 */327 100 public String getAccurate() { 328 101 return accurate; 329 102 } 330 /**331 * @param accurate332 * @uml.property name="accurate"333 */334 103 public void setAccurate(String accurate) { 335 104 this.accurate = accurate; 336 105 } 337 /**338 * @return339 * @uml.property name="verifyjob"340 */341 106 public String getVerifyjob() { 342 107 return verifyjob; 343 108 } 344 /**345 * @param verifyjob346 * @uml.property name="verifyjob"347 */348 109 public void setVerifyjob(String verifyjob) { 349 110 this.verifyjob = verifyjob; 350 111 } 351 /**352 * @return353 * @uml.property name="jobdefs"354 */355 112 public String getJobdefs() { 356 113 return jobdefs; 357 114 } 358 /**359 * @param jobdefs360 * @uml.property name="jobdefs"361 */362 115 public void setJobdefs(String jobdefs) { 363 116 this.jobdefs = jobdefs; 364 117 } 365 /**366 * @return367 * @uml.property name="bootstrap"368 */369 118 public String getBootstrap() { 370 119 return bootstrap; 371 120 } 372 /**373 * @param bootstrap374 * @uml.property name="bootstrap"375 */376 121 public void setBootstrap(String bootstrap) { 377 122 this.bootstrap = bootstrap; 378 123 } 379 /**380 * @return381 * @uml.property name="writebootstrap"382 */383 124 public String getWritebootstrap() { 384 125 return writebootstrap; 385 126 } 386 /**387 * @param writebootstrap388 * @uml.property name="writebootstrap"389 */390 127 public void setWritebootstrap(String writebootstrap) { 391 128 this.writebootstrap = writebootstrap; 392 129 } 393 /**394 * @return395 * @uml.property name="client"396 */397 130 public String getClient() { 398 131 return client; 399 132 } 400 /**401 * @param client402 * @uml.property name="client"403 */404 133 public void setClient(String client) { 405 134 this.client = client; 406 135 } 407 /**408 * @return409 * @uml.property name="fileset"410 */411 136 public String getFileset() { 412 137 return fileset; 413 138 } 414 /**415 * @param fileset416 * @uml.property name="fileset"417 */418 139 public void setFileset(String fileset) { 419 140 this.fileset = fileset; 420 141 } 421 /**422 * @return423 * @uml.property name="messages"424 */425 142 public String getMessages() { 426 143 return messages; 427 144 } 428 /**429 * @param messages430 * @uml.property name="messages"431 */432 145 public void setMessages(String messages) { 433 146 this.messages = messages; 434 147 } 435 /**436 * @return437 * @uml.property name="pool"438 */439 148 public String getPool() { 440 149 return pool; 441 150 } 442 /**443 * @param pool444 * @uml.property name="pool"445 */446 151 public void setPool(String pool) { 447 152 this.pool = pool; 448 153 } 449 /**450 * @return451 * @uml.property name="fullbackuppool"452 */453 154 public String getFullbackuppool() { 454 155 return fullbackuppool; 455 156 } 456 /**457 * @param fullbackuppool458 * @uml.property name="fullbackuppool"459 */460 157 public void setFullbackuppool(String fullbackuppool) { 461 158 this.fullbackuppool = fullbackuppool; 462 159 } 463 /**464 * @return465 * @uml.property name="differentialbackuppool"466 */467 160 public String getDifferentialbackuppool() { 468 161 return differentialbackuppool; 469 162 } 470 /**471 * @param differentialbackuppool472 * @uml.property name="differentialbackuppool"473 */474 163 public void setDifferentialbackuppool(String differentialbackuppool) { 475 164 this.differentialbackuppool = differentialbackuppool; 476 165 } 477 /**478 * @return479 * @uml.property name="incrementalbackuppool"480 */481 166 public String getIncrementalbackuppool() { 482 167 return incrementalbackuppool; 483 168 } 484 /**485 * @param incrementalbackuppool486 * @uml.property name="incrementalbackuppool"487 */488 169 public void setIncrementalbackuppool(String incrementalbackuppool) { 489 170 this.incrementalbackuppool = incrementalbackuppool; 490 171 } 491 /**492 * @return493 * @uml.property name="schedule"494 */495 172 public String getSchedule() { 496 173 return schedule; 497 174 } 498 /**499 * @param schedule500 * @uml.property name="schedule"501 */502 175 public void setSchedule(String schedule) { 503 176 this.schedule = schedule; 504 177 } 505 /**506 * @return507 * @uml.property name="storage"508 */509 178 public String getStorage() { 510 179 return storage; 511 180 } 512 /**513 * @param storage514 * @uml.property name="storage"515 */516 181 public void setStorage(String storage) { 517 182 this.storage = storage; 518 183 } 519 /**520 * @return521 * @uml.property name="maxstartdelay"522 */523 184 public String getMaxstartdelay() { 524 185 return maxstartdelay; 525 186 } 526 /**527 * @param maxstartdelay528 * @uml.property name="maxstartdelay"529 */530 187 public void setMaxstartdelay(String maxstartdelay) { 531 188 this.maxstartdelay = maxstartdelay; 532 189 } 533 /**534 * @return535 * @uml.property name="maxruntime"536 */537 190 public String getMaxruntime() { 538 191 return maxruntime; 539 192 } 540 /**541 * @param maxruntime542 * @uml.property name="maxruntime"543 */544 193 public void setMaxruntime(String maxruntime) { 545 194 this.maxruntime = maxruntime; 546 195 } 547 /**548 * @return549 * @uml.property name="incrementaldifferentialmaxwaittime"550 */551 196 public String getIncrementaldifferentialmaxwaittime() { 552 197 return incrementaldifferentialmaxwaittime; 553 198 } 554 /**555 * @param incrementaldifferentialmaxwaittime556 * @uml.property name="incrementaldifferentialmaxwaittime"557 */558 199 public void setIncrementaldifferentialmaxwaittime( 559 200 String incrementaldifferentialmaxwaittime) { 560 201 this.incrementaldifferentialmaxwaittime = incrementaldifferentialmaxwaittime; 561 202 } 562 /**563 * @return564 * @uml.property name="incrementalmaxruntime"565 */566 203 public String getIncrementalmaxruntime() { 567 204 return incrementalmaxruntime; 568 205 } 569 /**570 * @param incrementalmaxruntime571 * @uml.property name="incrementalmaxruntime"572 */573 206 public void setIncrementalmaxruntime(String incrementalmaxruntime) { 574 207 this.incrementalmaxruntime = incrementalmaxruntime; 575 208 } 576 /**577 * @return578 * @uml.property name="differentialmaxwaittime"579 */580 209 public String getDifferentialmaxwaittime() { 581 210 return differentialmaxwaittime; 582 211 } 583 /**584 * @param differentialmaxwaittime585 * @uml.property name="differentialmaxwaittime"586 */587 212 public void setDifferentialmaxwaittime(String differentialmaxwaittime) { 588 213 this.differentialmaxwaittime = differentialmaxwaittime; 589 214 } 590 /**591 * @return592 * @uml.property name="maxrunschedtime"593 */594 215 public String getMaxrunschedtime() { 595 216 return maxrunschedtime; 596 217 } 597 /**598 * @param maxrunschedtime599 * @uml.property name="maxrunschedtime"600 */601 218 public void setMaxrunschedtime(String maxrunschedtime) { 602 219 this.maxrunschedtime = maxrunschedtime; 603 220 } 604 /**605 * @return606 * @uml.property name="maxwaittime"607 */608 221 public String getMaxwaittime() { 609 222 return maxwaittime; 610 223 } 611 /**612 * @param maxwaittime613 * @uml.property name="maxwaittime"614 */615 224 public void setMaxwaittime(String maxwaittime) { 616 225 this.maxwaittime = maxwaittime; 617 226 } 618 /**619 * @return620 * @uml.property name="maxfullinterval"621 */622 227 public String getMaxfullinterval() { 623 228 return maxfullinterval; 624 229 } 625 /**626 * @param maxfullinterval627 * @uml.property name="maxfullinterval"628 */629 230 public void setMaxfullinterval(String maxfullinterval) { 630 231 this.maxfullinterval = maxfullinterval; 631 232 } 632 /**633 * @return634 * @uml.property name="prefermountedvolumes"635 */636 233 public String getPrefermountedvolumes() { 637 234 return prefermountedvolumes; 638 235 } 639 /**640 * @param prefermountedvolumes641 * @uml.property name="prefermountedvolumes"642 */643 236 public void setPrefermountedvolumes(String prefermountedvolumes) { 644 237 this.prefermountedvolumes = prefermountedvolumes; 645 238 } 646 /**647 * @return648 * @uml.property name="prunejobs"649 */650 239 public String getPrunejobs() { 651 240 return prunejobs; 652 241 } 653 /**654 * @param prunejobs655 * @uml.property name="prunejobs"656 */657 242 public void setPrunejobs(String prunejobs) { 658 243 this.prunejobs = prunejobs; 659 244 } 660 /**661 * @return662 * @uml.property name="prunefiles"663 */664 245 public String getPrunefiles() { 665 246 return prunefiles; 666 247 } 667 /**668 * @param prunefiles669 * @uml.property name="prunefiles"670 */671 248 public void setPrunefiles(String prunefiles) { 672 249 this.prunefiles = prunefiles; 673 250 } 674 /**675 * @return676 * @uml.property name="prunevolumes"677 */678 251 public String getPrunevolumes() { 679 252 return prunevolumes; 680 253 } 681 /**682 * @param prunevolumes683 * @uml.property name="prunevolumes"684 */685 254 public void setPrunevolumes(String prunevolumes) { 686 255 this.prunevolumes = prunevolumes; 687 256 } 688 /**689 * @return690 * @uml.property name="runscript"691 */692 257 public String getRunscript() { 693 258 return runscript; 694 259 } 695 /**696 * @param runscript697 * @uml.property name="runscript"698 */699 260 public void setRunscript(String runscript) { 700 261 this.runscript = runscript; 701 262 } 702 /**703 * @return704 * @uml.property name="runbeforejob"705 */706 263 public String getRunbeforejob() { 707 264 return runbeforejob; 708 265 } 709 /**710 * @param runbeforejob711 * @uml.property name="runbeforejob"712 */713 266 public void setRunbeforejob(String runbeforejob) { 714 267 this.runbeforejob = runbeforejob; 715 268 } 716 /**717 * @return718 * @uml.property name="runafterjob"719 */720 269 public String getRunafterjob() { 721 270 return runafterjob; 722 271 } 723 /**724 * @param runafterjob725 * @uml.property name="runafterjob"726 */727 272 public void setRunafterjob(String runafterjob) { 728 273 this.runafterjob = runafterjob; 729 274 } 730 /**731 * @return732 * @uml.property name="runafterfailedjob"733 */734 275 public String getRunafterfailedjob() { 735 276 return runafterfailedjob; 736 277 } 737 /**738 * @param runafterfailedjob739 * @uml.property name="runafterfailedjob"740 */741 278 public void setRunafterfailedjob(String runafterfailedjob) { 742 279 this.runafterfailedjob = runafterfailedjob; 743 280 } 744 /**745 * @return746 * @uml.property name="clientrunbeforejob"747 */748 281 public String getClientrunbeforejob() { 749 282 return clientrunbeforejob; 750 283 } 751 /**752 * @param clientrunbeforejob753 * @uml.property name="clientrunbeforejob"754 */755 284 public void setClientrunbeforejob(String clientrunbeforejob) { 756 285 this.clientrunbeforejob = clientrunbeforejob; 757 286 } 758 /**759 * @return760 * @uml.property name="clientrunafterjob"761 */762 287 public String getClientrunafterjob() { 763 288 return clientrunafterjob; 764 289 } 765 /**766 * @param clientrunafterjob767 * @uml.property name="clientrunafterjob"768 */769 290 public void setClientrunafterjob(String clientrunafterjob) { 770 291 this.clientrunafterjob = clientrunafterjob; 771 292 } 772 /**773 * @return774 * @uml.property name="rerunfailedlevels"775 */776 293 public String getRerunfailedlevels() { 777 294 return rerunfailedlevels; 778 295 } 779 /**780 * @param rerunfailedlevels781 * @uml.property name="rerunfailedlevels"782 */783 296 public void setRerunfailedlevels(String rerunfailedlevels) { 784 297 this.rerunfailedlevels = rerunfailedlevels; 785 298 } 786 /**787 * @return788 * @uml.property name="spooldata"789 */790 299 public String getSpooldata() { 791 300 return spooldata; 792 301 } 793 /**794 * @param spooldata795 * @uml.property name="spooldata"796 */797 302 public void setSpooldata(String spooldata) { 798 303 this.spooldata = spooldata; 799 304 } 800 /**801 * @return802 * @uml.property name="spoolattributes"803 */804 305 public String getSpoolattributes() { 805 306 return spoolattributes; 806 307 } 807 /**808 * @param spoolattributes809 * @uml.property name="spoolattributes"810 */811 308 public void setSpoolattributes(String spoolattributes) { 812 309 this.spoolattributes = spoolattributes; 813 310 } 814 /**815 * @return816 * @uml.property name="where"817 */818 311 public String getWhere() { 819 312 return where; 820 313 } 821 /**822 * @param where823 * @uml.property name="where"824 */825 314 public void setWhere(String where) { 826 315 this.where = where; 827 316 } 828 /**829 * @return830 * @uml.property name="addprefix"831 */832 317 public String getAddprefix() { 833 318 return addprefix; 834 319 } 835 /**836 * @param addprefix837 * @uml.property name="addprefix"838 */839 320 public void setAddprefix(String addprefix) { 840 321 this.addprefix = addprefix; 841 322 } 842 /**843 * @return844 * @uml.property name="addsuffix"845 */846 323 public String getAddsuffix() { 847 324 return addsuffix; 848 325 } 849 /**850 * @param addsuffix851 * @uml.property name="addsuffix"852 */853 326 public void setAddsuffix(String addsuffix) { 854 327 this.addsuffix = addsuffix; 855 328 } 856 /**857 * @return858 * @uml.property name="stripprefix"859 */860 329 public String getStripprefix() { 861 330 return stripprefix; 862 331 } 863 /**864 * @param stripprefix865 * @uml.property name="stripprefix"866 */867 332 public void setStripprefix(String stripprefix) { 868 333 this.stripprefix = stripprefix; 869 334 } 870 /**871 * @return872 * @uml.property name="regexwhere"873 */874 335 public String getRegexwhere() { 875 336 return regexwhere; 876 337 } 877 /**878 * @param regexwhere879 * @uml.property name="regexwhere"880 */881 338 public void setRegexwhere(String regexwhere) { 882 339 this.regexwhere = regexwhere; 883 340 } 884 /**885 * @return886 * @uml.property name="replace"887 */888 341 public String getReplace() { 889 342 return replace; 890 343 } 891 /**892 * @param replace893 * @uml.property name="replace"894 */895 344 public void setReplace(String replace) { 896 345 this.replace = replace; 897 346 } 898 /**899 * @return900 * @uml.property name="prefixlinks"901 */902 347 public String getPrefixlinks() { 903 348 return prefixlinks; 904 349 } 905 /**906 * @param prefixlinks907 * @uml.property name="prefixlinks"908 */909 350 public void setPrefixlinks(String prefixlinks) { 910 351 this.prefixlinks = prefixlinks; 911 352 } 912 /**913 * @return914 * @uml.property name="maximumconcurrentjobs"915 */916 353 public String getMaximumconcurrentjobs() { 917 354 return maximumconcurrentjobs; 918 355 } 919 /**920 * @param maximumconcurrentjobs921 * @uml.property name="maximumconcurrentjobs"922 */923 356 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 924 357 this.maximumconcurrentjobs = maximumconcurrentjobs; 925 358 } 926 /**927 * @return928 * @uml.property name="rescheduleonerror"929 */930 359 public String getRescheduleonerror() { 931 360 return rescheduleonerror; 932 361 } 933 /**934 * @param rescheduleonerror935 * @uml.property name="rescheduleonerror"936 */937 362 public void setRescheduleonerror(String rescheduleonerror) { 938 363 this.rescheduleonerror = rescheduleonerror; 939 364 } 940 /**941 * @return942 * @uml.property name="rescheduleinterval"943 */944 365 public String getRescheduleinterval() { 945 366 return rescheduleinterval; 946 367 } 947 /**948 * @param rescheduleinterval949 * @uml.property name="rescheduleinterval"950 */951 368 public void setRescheduleinterval(String rescheduleinterval) { 952 369 this.rescheduleinterval = rescheduleinterval; 953 370 } 954 /**955 * @return956 * @uml.property name="rescheduletimes"957 */958 371 public String getRescheduletimes() { 959 372 return rescheduletimes; 960 373 } 961 /**962 * @param rescheduletimes963 * @uml.property name="rescheduletimes"964 */965 374 public void setRescheduletimes(String rescheduletimes) { 966 375 this.rescheduletimes = rescheduletimes; 967 376 } 968 /**969 * @return970 * @uml.property name="allowduplicatejobs"971 */972 377 public String getAllowduplicatejobs() { 973 378 return allowduplicatejobs; 974 379 } 975 /**976 * @param allowduplicatejobs977 * @uml.property name="allowduplicatejobs"978 */979 380 public void setAllowduplicatejobs(String allowduplicatejobs) { 980 381 this.allowduplicatejobs = allowduplicatejobs; 981 382 } 982 /**983 * @return984 * @uml.property name="allowhigherduplicates"985 */986 383 public String getAllowhigherduplicates() { 987 384 return allowhigherduplicates; 988 385 } 989 /**990 * @param allowhigherduplicates991 * @uml.property name="allowhigherduplicates"992 */993 386 public void setAllowhigherduplicates(String allowhigherduplicates) { 994 387 this.allowhigherduplicates = allowhigherduplicates; 995 388 } 996 /**997 * @return998 * @uml.property name="cancellowerlevelduplicates"999 */1000 389 public String getCancellowerlevelduplicates() { 1001 390 return cancellowerlevelduplicates; 1002 391 } 1003 /**1004 * @param cancellowerlevelduplicates1005 * @uml.property name="cancellowerlevelduplicates"1006 */1007 392 public void setCancellowerlevelduplicates(String cancellowerlevelduplicates) { 1008 393 this.cancellowerlevelduplicates = cancellowerlevelduplicates; 1009 394 } 1010 /**1011 * @return1012 * @uml.property name="cancelqueuedduplicates"1013 */1014 395 public String getCancelqueuedduplicates() { 1015 396 return cancelqueuedduplicates; 1016 397 } 1017 /**1018 * @param cancelqueuedduplicates1019 * @uml.property name="cancelqueuedduplicates"1020 */1021 398 public void setCancelqueuedduplicates(String cancelqueuedduplicates) { 1022 399 this.cancelqueuedduplicates = cancelqueuedduplicates; 1023 400 } 1024 /**1025 * @return1026 * @uml.property name="cancelrunningduplicates"1027 */1028 401 public String getCancelrunningduplicates() { 1029 402 return cancelrunningduplicates; 1030 403 } 1031 /**1032 * @param cancelrunningduplicates1033 * @uml.property name="cancelrunningduplicates"1034 */1035 404 public void setCancelrunningduplicates(String cancelrunningduplicates) { 1036 405 this.cancelrunningduplicates = cancelrunningduplicates; 1037 406 } 1038 /**1039 * @return1040 * @uml.property name="duplicatejobproximity"1041 */1042 407 public String getDuplicatejobproximity() { 1043 408 return duplicatejobproximity; 1044 409 } 1045 /**1046 * @param duplicatejobproximity1047 * @uml.property name="duplicatejobproximity"1048 */1049 410 public void setDuplicatejobproximity(String duplicatejobproximity) { 1050 411 this.duplicatejobproximity = duplicatejobproximity; 1051 412 } 1052 /**1053 * @return1054 * @uml.property name="run"1055 */1056 413 public String getRun() { 1057 414 return run; 1058 415 } 1059 /**1060 * @param run1061 * @uml.property name="run"1062 */1063 416 public void setRun(String run) { 1064 417 this.run = run; 1065 418 } 1066 /**1067 * @return1068 * @uml.property name="priority"1069 */1070 419 public String getPriority() { 1071 420 return priority; 1072 421 } 1073 /**1074 * @param priority1075 * @uml.property name="priority"1076 */1077 422 public void setPriority(String priority) { 1078 423 this.priority = priority; 1079 424 } 1080 /**1081 * @return1082 * @uml.property name="allowmixedpriority"1083 */1084 425 public String getAllowmixedpriority() { 1085 426 return allowmixedpriority; 1086 427 } 1087 /**1088 * @param allowmixedpriority1089 * @uml.property name="allowmixedpriority"1090 */1091 428 public void setAllowmixedpriority(String allowmixedpriority) { 1092 429 this.allowmixedpriority = allowmixedpriority; 1093 430 } 1094 /**1095 * @return1096 * @uml.property name="writepartafterjob"1097 */1098 431 public String getWritepartafterjob() { 1099 432 return writepartafterjob; 1100 433 } 1101 /**1102 * @param writepartafterjob1103 * @uml.property name="writepartafterjob"1104 */1105 434 public void setWritepartafterjob(String writepartafterjob) { 1106 435 this.writepartafterjob = writepartafterjob; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/PoolItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class PoolItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="maximumvolumes"9 */10 4 private String maximumvolumes; 11 /**12 * @uml.property name="pooltype"13 */14 5 private String pooltype; 15 /**16 * @uml.property name="storage"17 */18 6 private String storage; 19 /**20 * @uml.property name="usevolumeonce"21 */22 7 private String usevolumeonce; 23 /**24 * @uml.property name="maximumvolumejobs"25 */26 8 private String maximumvolumejobs; 27 /**28 * @uml.property name="maximumvolumefiles"29 */30 9 private String maximumvolumefiles; 31 /**32 * @uml.property name="maximumvolumebytes"33 */34 10 private String maximumvolumebytes; 35 /**36 * @uml.property name="volumeuseduration"37 */38 11 private String volumeuseduration; 39 /**40 * @uml.property name="catalogfiles"41 */42 12 private String catalogfiles; 43 /**44 * @uml.property name="autoprune"45 */46 13 private String autoprune; 47 /**48 * @uml.property name="volumeretention"49 */50 14 private String volumeretention; 51 /**52 * @uml.property name="actiononpurge"53 */54 15 private String actiononpurge; 55 /**56 * @uml.property name="scratchpool"57 */58 16 private String scratchpool; 59 /**60 * @uml.property name="recyclepool"61 */62 17 private String recyclepool; 63 /**64 * @uml.property name="recycle"65 */66 18 private String recycle; 67 /**68 * @uml.property name="recycleoldestvolume"69 */70 19 private String recycleoldestvolume; 71 /**72 * @uml.property name="recyclecurrentvolume"73 */74 20 private String recyclecurrentvolume; 75 /**76 * @uml.property name="purgeoldestvolume"77 */78 21 private String purgeoldestvolume; 79 /**80 * @uml.property name="fileretention"81 */82 22 private String fileretention; 83 /**84 * @uml.property name="jobretention"85 */86 23 private String jobretention; 87 /**88 * @uml.property name="cleaningprefix"89 */90 24 private String cleaningprefix; 91 /**92 * @uml.property name="labelformat"93 */94 25 private String labelformat; 95 26 … … 101 32 } 102 33 103 /**104 * @return105 * @uml.property name="name"106 */107 34 public String getName() { 108 35 return name; 109 36 } 110 37 111 /**112 * @param name113 * @uml.property name="name"114 */115 38 public void setName(String name) { 116 39 this.name = name; 117 40 } 118 41 119 /**120 * @return121 * @uml.property name="maximumvolumes"122 */123 42 public String getMaximumvolumes() { 124 43 return maximumvolumes; 125 44 } 126 45 127 /**128 * @param maximumvolumes129 * @uml.property name="maximumvolumes"130 */131 46 public void setMaximumvolumes(String maximumvolumes) { 132 47 this.maximumvolumes = maximumvolumes; 133 48 } 134 49 135 /**136 * @return137 * @uml.property name="pooltype"138 */139 50 public String getPooltype() { 140 51 return pooltype; 141 52 } 142 53 143 /**144 * @param pooltype145 * @uml.property name="pooltype"146 */147 54 public void setPooltype(String pooltype) { 148 55 this.pooltype = pooltype; 149 56 } 150 57 151 /**152 * @return153 * @uml.property name="storage"154 */155 58 public String getStorage() { 156 59 return storage; 157 60 } 158 61 159 /**160 * @param storage161 * @uml.property name="storage"162 */163 62 public void setStorage(String storage) { 164 63 this.storage = storage; 165 64 } 166 65 167 /**168 * @return169 * @uml.property name="usevolumeonce"170 */171 66 public String getUsevolumeonce() { 172 67 return usevolumeonce; 173 68 } 174 69 175 /**176 * @param usevolumeonce177 * @uml.property name="usevolumeonce"178 */179 70 public void setUsevolumeonce(String usevolumeonce) { 180 71 this.usevolumeonce = usevolumeonce; 181 72 } 182 73 183 /**184 * @return185 * @uml.property name="maximumvolumejobs"186 */187 74 public String getMaximumvolumejobs() { 188 75 return maximumvolumejobs; 189 76 } 190 77 191 /**192 * @param maximumvolumejobs193 * @uml.property name="maximumvolumejobs"194 */195 78 public void setMaximumvolumejobs(String maximumvolumejobs) { 196 79 this.maximumvolumejobs = maximumvolumejobs; 197 80 } 198 81 199 /**200 * @return201 * @uml.property name="maximumvolumefiles"202 */203 82 public String getMaximumvolumefiles() { 204 83 return maximumvolumefiles; 205 84 } 206 85 207 /**208 * @param maximumvolumefiles209 * @uml.property name="maximumvolumefiles"210 */211 86 public void setMaximumvolumefiles(String maximumvolumefiles) { 212 87 this.maximumvolumefiles = maximumvolumefiles; 213 88 } 214 89 215 /**216 * @return217 * @uml.property name="maximumvolumebytes"218 */219 90 public String getMaximumvolumebytes() { 220 91 return maximumvolumebytes; 221 92 } 222 93 223 /**224 * @param maximumvolumebytes225 * @uml.property name="maximumvolumebytes"226 */227 94 public void setMaximumvolumebytes(String maximumvolumebytes) { 228 95 this.maximumvolumebytes = maximumvolumebytes; 229 96 } 230 97 231 /**232 * @return233 * @uml.property name="volumeuseduration"234 */235 98 public String getVolumeuseduration() { 236 99 return volumeuseduration; 237 100 } 238 101 239 /**240 * @param volumeuseduration241 * @uml.property name="volumeuseduration"242 */243 102 public void setVolumeuseduration(String volumeuseduration) { 244 103 this.volumeuseduration = volumeuseduration; 245 104 } 246 105 247 /**248 * @return249 * @uml.property name="catalogfiles"250 */251 106 public String getCatalogfiles() { 252 107 return catalogfiles; 253 108 } 254 109 255 /**256 * @param catalogfiles257 * @uml.property name="catalogfiles"258 */259 110 public void setCatalogfiles(String catalogfiles) { 260 111 this.catalogfiles = catalogfiles; 261 112 } 262 113 263 /**264 * @return265 * @uml.property name="autoprune"266 */267 114 public String getAutoprune() { 268 115 return autoprune; 269 116 } 270 117 271 /**272 * @param autoprune273 * @uml.property name="autoprune"274 */275 118 public void setAutoprune(String autoprune) { 276 119 this.autoprune = autoprune; 277 120 } 278 121 279 /**280 * @return281 * @uml.property name="volumeretention"282 */283 122 public String getVolumeretention() { 284 123 return volumeretention; 285 124 } 286 125 287 /**288 * @param volumeretention289 * @uml.property name="volumeretention"290 */291 126 public void setVolumeretention(String volumeretention) { 292 127 this.volumeretention = volumeretention; 293 128 } 294 129 295 /**296 * @return297 * @uml.property name="actiononpurge"298 */299 130 public String getActiononpurge() { 300 131 return actiononpurge; 301 132 } 302 133 303 /**304 * @param actiononpurge305 * @uml.property name="actiononpurge"306 */307 134 public void setActiononpurge(String actiononpurge) { 308 135 this.actiononpurge = actiononpurge; 309 136 } 310 137 311 /**312 * @return313 * @uml.property name="scratchpool"314 */315 138 public String getScratchpool() { 316 139 return scratchpool; 317 140 } 318 141 319 /**320 * @param scratchpool321 * @uml.property name="scratchpool"322 */323 142 public void setScratchpool(String scratchpool) { 324 143 this.scratchpool = scratchpool; 325 144 } 326 145 327 /**328 * @return329 * @uml.property name="recyclepool"330 */331 146 public String getRecyclepool() { 332 147 return recyclepool; 333 148 } 334 149 335 /**336 * @param recyclepool337 * @uml.property name="recyclepool"338 */339 150 public void setRecyclepool(String recyclepool) { 340 151 this.recyclepool = recyclepool; 341 152 } 342 153 343 /**344 * @return345 * @uml.property name="recycle"346 */347 154 public String getRecycle() { 348 155 return recycle; 349 156 } 350 157 351 /**352 * @param recycle353 * @uml.property name="recycle"354 */355 158 public void setRecycle(String recycle) { 356 159 this.recycle = recycle; 357 160 } 358 161 359 /**360 * @return361 * @uml.property name="recycleoldestvolume"362 */363 162 public String getRecycleoldestvolume() { 364 163 return recycleoldestvolume; 365 164 } 366 165 367 /**368 * @param recycleoldestvolume369 * @uml.property name="recycleoldestvolume"370 */371 166 public void setRecycleoldestvolume(String recycleoldestvolume) { 372 167 this.recycleoldestvolume = recycleoldestvolume; 373 168 } 374 169 375 /**376 * @return377 * @uml.property name="recyclecurrentvolume"378 */379 170 public String getRecyclecurrentvolume() { 380 171 return recyclecurrentvolume; 381 172 } 382 173 383 /**384 * @param recyclecurrentvolume385 * @uml.property name="recyclecurrentvolume"386 */387 174 public void setRecyclecurrentvolume(String recyclecurrentvolume) { 388 175 this.recyclecurrentvolume = recyclecurrentvolume; 389 176 } 390 177 391 /**392 * @return393 * @uml.property name="purgeoldestvolume"394 */395 178 public String getPurgeoldestvolume() { 396 179 return purgeoldestvolume; 397 180 } 398 181 399 /**400 * @param purgeoldestvolume401 * @uml.property name="purgeoldestvolume"402 */403 182 public void setPurgeoldestvolume(String purgeoldestvolume) { 404 183 this.purgeoldestvolume = purgeoldestvolume; 405 184 } 406 185 407 /**408 * @return409 * @uml.property name="fileretention"410 */411 186 public String getFileretention() { 412 187 return fileretention; 413 188 } 414 189 415 /**416 * @param fileretention417 * @uml.property name="fileretention"418 */419 190 public void setFileretention(String fileretention) { 420 191 this.fileretention = fileretention; 421 192 } 422 193 423 /**424 * @return425 * @uml.property name="jobretention"426 */427 194 public String getJobretention() { 428 195 return jobretention; 429 196 } 430 197 431 /**432 * @param jobretention433 * @uml.property name="jobretention"434 */435 198 public void setJobretention(String jobretention) { 436 199 this.jobretention = jobretention; 437 200 } 438 201 439 /**440 * @return441 * @uml.property name="cleaningprefix"442 */443 202 public String getCleaningprefix() { 444 203 return cleaningprefix; 445 204 } 446 205 447 /**448 * @param cleaningprefix449 * @uml.property name="cleaningprefix"450 */451 206 public void setCleaningprefix(String cleaningprefix) { 452 207 this.cleaningprefix = cleaningprefix; 453 208 } 454 209 455 /**456 * @return457 * @uml.property name="labelformat"458 */459 210 public String getLabelformat() { 460 211 return labelformat; 461 212 } 462 213 463 /**464 * @param labelformat465 * @uml.property name="labelformat"466 */467 214 public void setLabelformat(String labelformat) { 468 215 this.labelformat = labelformat; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDDeviceItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class SDDeviceItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="archivedevice"9 */10 4 private String archivedevice; 11 /**12 * @uml.property name="devicetype"13 */14 5 private String devicetype; 15 /**16 * @uml.property name="mediatype"17 */18 6 private String mediatype; 19 /**20 * @uml.property name="autochanger"21 */22 7 private String autochanger; 23 /**24 * @uml.property name="changerdevice"25 */26 8 private String changerdevice; 27 /**28 * @uml.property name="changercommand"29 */30 9 private String changercommand; 31 /**32 * @uml.property name="alertcommand"33 */34 10 private String alertcommand; 35 /**36 * @uml.property name="driveindex"37 */38 11 private String driveindex; 39 /**40 * @uml.property name="autoselect"41 */42 12 private String autoselect; 43 /**44 * @uml.property name="maximumconcurentjobs"45 */46 13 private String maximumconcurentjobs; 47 /**48 * @uml.property name="maximumchangerwait"49 */50 14 private String maximumchangerwait; 51 /**52 * @uml.property name="maximumrewindwait"53 */54 15 private String maximumrewindwait; 55 /**56 * @uml.property name="maximumopenwait"57 */58 16 private String maximumopenwait; 59 /**60 * @uml.property name="alwaysopen"61 */62 17 private String alwaysopen; 63 /**64 * @uml.property name="volumepollinterval"65 */66 18 private String volumepollinterval; 67 /**68 * @uml.property name="closeonpoll"69 */70 19 private String closeonpoll; 71 20 //private String maximumOpenWait; 72 /**73 * @uml.property name="removablemedia"74 */75 21 private String removablemedia; 76 /**77 * @uml.property name="randomaccess"78 */79 22 private String randomaccess; 80 /**81 * @uml.property name="requiresmount"82 */83 23 private String requiresmount; 84 /**85 * @uml.property name="mountpoint"86 */87 24 private String mountpoint; 88 /**89 * @uml.property name="mountcommand"90 */91 25 private String mountcommand; 92 /**93 * @uml.property name="unmountcommand"94 */95 26 private String unmountcommand; 96 /**97 * @uml.property name="blockchecksum"98 */99 27 private String blockchecksum; 100 /**101 * @uml.property name="minimumblocksize"102 */103 28 private String minimumblocksize; 104 /**105 * @uml.property name="maximumblocksize"106 */107 29 private String maximumblocksize; 108 /**109 * @uml.property name="hardwareendofmedium"110 */111 30 private String hardwareendofmedium; 112 /**113 * @uml.property name="fastforwardspacefile"114 */115 31 private String fastforwardspacefile; 116 /**117 * @uml.property name="usemtiocget"118 */119 32 private String usemtiocget; 120 /**121 * @uml.property name="bsfateom"122 */123 33 private String bsfateom; 124 /**125 * @uml.property name="twoeof"126 */127 34 private String twoeof; 128 /**129 * @uml.property name="backwardspacerecord"130 */131 35 private String backwardspacerecord; 132 /**133 * @uml.property name="backwardspacefile"134 */135 36 private String backwardspacefile; 136 /**137 * @uml.property name="forwardspacerecord"138 */139 37 private String forwardspacerecord; 140 /**141 * @uml.property name="forwardspacefile"142 */143 38 private String forwardspacefile; 144 /**145 * @uml.property name="offlineonunmount"146 */147 39 private String offlineonunmount; 148 /**149 * @uml.property name="maximumconcurrentjobs"150 */151 40 private String maximumconcurrentjobs; 152 /**153 * @uml.property name="maximumvolumesize"154 */155 41 private String maximumvolumesize; 156 /**157 * @uml.property name="maximumfilesize"158 */159 42 private String maximumfilesize; 160 /**161 * @uml.property name="blockpositioning"162 */163 43 private String blockpositioning; 164 /**165 * @uml.property name="maximumnetworkbuffersize"166 */167 44 private String maximumnetworkbuffersize; 168 /**169 * @uml.property name="maximumspoolsize"170 */171 45 private String maximumspoolsize; 172 /**173 * @uml.property name="maximumjobspoolsize"174 */175 46 private String maximumjobspoolsize; 176 /**177 * @uml.property name="spooldirectory"178 */179 47 private String spooldirectory; 180 /**181 * @uml.property name="maximumpartsize"182 */183 48 private String maximumpartsize; 184 49 185 50 public SDDeviceItem(){} 186 51 187 /**188 * @return189 * @uml.property name="name"190 */191 52 public String getName() { 192 53 return name; 193 54 } 194 55 195 /**196 * @param name197 * @uml.property name="name"198 */199 56 public void setName(String name) { 200 57 this.name = name; 201 58 } 202 59 203 /**204 * @return205 * @uml.property name="archivedevice"206 */207 60 public String getArchivedevice() { 208 61 return archivedevice; 209 62 } 210 63 211 /**212 * @param archivedevice213 * @uml.property name="archivedevice"214 */215 64 public void setArchivedevice(String archivedevice) { 216 65 this.archivedevice = archivedevice; 217 66 } 218 67 219 /**220 * @return221 * @uml.property name="devicetype"222 */223 68 public String getDevicetype() { 224 69 return devicetype; 225 70 } 226 71 227 /**228 * @param devicetype229 * @uml.property name="devicetype"230 */231 72 public void setDevicetype(String devicetype) { 232 73 this.devicetype = devicetype; 233 74 } 234 75 235 /**236 * @return237 * @uml.property name="mediatype"238 */239 76 public String getMediatype() { 240 77 return mediatype; 241 78 } 242 79 243 /**244 * @param mediatype245 * @uml.property name="mediatype"246 */247 80 public void setMediatype(String mediatype) { 248 81 this.mediatype = mediatype; 249 82 } 250 83 251 /**252 * @return253 * @uml.property name="autochanger"254 */255 84 public String getAutochanger() { 256 85 return autochanger; 257 86 } 258 87 259 /**260 * @param autochanger261 * @uml.property name="autochanger"262 */263 88 public void setAutochanger(String autochanger) { 264 89 this.autochanger = autochanger; 265 90 } 266 91 267 /**268 * @return269 * @uml.property name="changerdevice"270 */271 92 public String getChangerdevice() { 272 93 return changerdevice; 273 94 } 274 95 275 /**276 * @param changerdevice277 * @uml.property name="changerdevice"278 */279 96 public void setChangerdevice(String changerdevice) { 280 97 this.changerdevice = changerdevice; 281 98 } 282 99 283 /**284 * @return285 * @uml.property name="changercommand"286 */287 100 public String getChangercommand() { 288 101 return changercommand; 289 102 } 290 103 291 /**292 * @param changercommand293 * @uml.property name="changercommand"294 */295 104 public void setChangercommand(String changercommand) { 296 105 this.changercommand = changercommand; 297 106 } 298 107 299 /**300 * @return301 * @uml.property name="alertcommand"302 */303 108 public String getAlertcommand() { 304 109 return alertcommand; 305 110 } 306 111 307 /**308 * @param alertcommand309 * @uml.property name="alertcommand"310 */311 112 public void setAlertcommand(String alertcommand) { 312 113 this.alertcommand = alertcommand; 313 114 } 314 115 315 /**316 * @return317 * @uml.property name="driveindex"318 */319 116 public String getDriveindex() { 320 117 return driveindex; 321 118 } 322 119 323 /**324 * @param driveindex325 * @uml.property name="driveindex"326 */327 120 public void setDriveindex(String driveindex) { 328 121 this.driveindex = driveindex; 329 122 } 330 123 331 /**332 * @return333 * @uml.property name="autoselect"334 */335 124 public String getAutoselect() { 336 125 return autoselect; 337 126 } 338 127 339 /**340 * @param autoselect341 * @uml.property name="autoselect"342 */343 128 public void setAutoselect(String autoselect) { 344 129 this.autoselect = autoselect; 345 130 } 346 131 347 /**348 * @return349 * @uml.property name="maximumconcurentjobs"350 */351 132 public String getMaximumconcurentjobs() { 352 133 return maximumconcurentjobs; 353 134 } 354 135 355 /**356 * @param maximumconcurentjobs357 * @uml.property name="maximumconcurentjobs"358 */359 136 public void setMaximumconcurentjobs(String maximumconcurentjobs) { 360 137 this.maximumconcurentjobs = maximumconcurentjobs; 361 138 } 362 139 363 /**364 * @return365 * @uml.property name="maximumchangerwait"366 */367 140 public String getMaximumchangerwait() { 368 141 return maximumchangerwait; 369 142 } 370 143 371 /**372 * @param maximumchangerwait373 * @uml.property name="maximumchangerwait"374 */375 144 public void setMaximumchangerwait(String maximumchangerwait) { 376 145 this.maximumchangerwait = maximumchangerwait; 377 146 } 378 147 379 /**380 * @return381 * @uml.property name="maximumrewindwait"382 */383 148 public String getMaximumrewindwait() { 384 149 return maximumrewindwait; 385 150 } 386 151 387 /**388 * @param maximumrewindwait389 * @uml.property name="maximumrewindwait"390 */391 152 public void setMaximumrewindwait(String maximumrewindwait) { 392 153 this.maximumrewindwait = maximumrewindwait; 393 154 } 394 155 395 /**396 * @return397 * @uml.property name="maximumopenwait"398 */399 156 public String getMaximumopenwait() { 400 157 return maximumopenwait; 401 158 } 402 159 403 /**404 * @param maximumopenwait405 * @uml.property name="maximumopenwait"406 */407 160 public void setMaximumopenwait(String maximumopenwait) { 408 161 this.maximumopenwait = maximumopenwait; 409 162 } 410 163 411 /**412 * @return413 * @uml.property name="alwaysopen"414 */415 164 public String getAlwaysopen() { 416 165 return alwaysopen; 417 166 } 418 167 419 /**420 * @param alwaysopen421 * @uml.property name="alwaysopen"422 */423 168 public void setAlwaysopen(String alwaysopen) { 424 169 this.alwaysopen = alwaysopen; 425 170 } 426 171 427 /**428 * @return429 * @uml.property name="volumepollinterval"430 */431 172 public String getVolumepollinterval() { 432 173 return volumepollinterval; 433 174 } 434 175 435 /**436 * @param volumepollinterval437 * @uml.property name="volumepollinterval"438 */439 176 public void setVolumepollinterval(String volumepollinterval) { 440 177 this.volumepollinterval = volumepollinterval; 441 178 } 442 179 443 /**444 * @return445 * @uml.property name="closeonpoll"446 */447 180 public String getCloseonpoll() { 448 181 return closeonpoll; 449 182 } 450 183 451 /**452 * @param closeonpoll453 * @uml.property name="closeonpoll"454 */455 184 public void setCloseonpoll(String closeonpoll) { 456 185 this.closeonpoll = closeonpoll; 457 186 } 458 187 459 /**460 * @return461 * @uml.property name="removablemedia"462 */463 188 public String getRemovablemedia() { 464 189 return removablemedia; 465 190 } 466 191 467 /**468 * @param removablemedia469 * @uml.property name="removablemedia"470 */471 192 public void setRemovablemedia(String removablemedia) { 472 193 this.removablemedia = removablemedia; 473 194 } 474 195 475 /**476 * @return477 * @uml.property name="randomaccess"478 */479 196 public String getRandomaccess() { 480 197 return randomaccess; 481 198 } 482 199 483 /**484 * @param randomaccess485 * @uml.property name="randomaccess"486 */487 200 public void setRandomaccess(String randomaccess) { 488 201 this.randomaccess = randomaccess; 489 202 } 490 203 491 /**492 * @return493 * @uml.property name="requiresmount"494 */495 204 public String getRequiresmount() { 496 205 return requiresmount; 497 206 } 498 207 499 /**500 * @param requiresmount501 * @uml.property name="requiresmount"502 */503 208 public void setRequiresmount(String requiresmount) { 504 209 this.requiresmount = requiresmount; 505 210 } 506 211 507 /**508 * @return509 * @uml.property name="mountpoint"510 */511 212 public String getMountpoint() { 512 213 return mountpoint; 513 214 } 514 215 515 /**516 * @param mountpoint517 * @uml.property name="mountpoint"518 */519 216 public void setMountpoint(String mountpoint) { 520 217 this.mountpoint = mountpoint; 521 218 } 522 219 523 /**524 * @return525 * @uml.property name="mountcommand"526 */527 220 public String getMountcommand() { 528 221 return mountcommand; 529 222 } 530 223 531 /**532 * @param mountcommand533 * @uml.property name="mountcommand"534 */535 224 public void setMountcommand(String mountcommand) { 536 225 this.mountcommand = mountcommand; 537 226 } 538 227 539 /**540 * @return541 * @uml.property name="unmountcommand"542 */543 228 public String getUnmountcommand() { 544 229 return unmountcommand; 545 230 } 546 231 547 /**548 * @param unmountcommand549 * @uml.property name="unmountcommand"550 */551 232 public void setUnmountcommand(String unmountcommand) { 552 233 this.unmountcommand = unmountcommand; 553 234 } 554 235 555 /**556 * @return557 * @uml.property name="blockchecksum"558 */559 236 public String getBlockchecksum() { 560 237 return blockchecksum; 561 238 } 562 239 563 /**564 * @param blockchecksum565 * @uml.property name="blockchecksum"566 */567 240 public void setBlockchecksum(String blockchecksum) { 568 241 this.blockchecksum = blockchecksum; 569 242 } 570 243 571 /**572 * @return573 * @uml.property name="minimumblocksize"574 */575 244 public String getMinimumblocksize() { 576 245 return minimumblocksize; 577 246 } 578 247 579 /**580 * @param minimumblocksize581 * @uml.property name="minimumblocksize"582 */583 248 public void setMinimumblocksize(String minimumblocksize) { 584 249 this.minimumblocksize = minimumblocksize; 585 250 } 586 251 587 /**588 * @return589 * @uml.property name="maximumblocksize"590 */591 252 public String getMaximumblocksize() { 592 253 return maximumblocksize; 593 254 } 594 255 595 /**596 * @param maximumblocksize597 * @uml.property name="maximumblocksize"598 */599 256 public void setMaximumblocksize(String maximumblocksize) { 600 257 this.maximumblocksize = maximumblocksize; 601 258 } 602 259 603 /**604 * @return605 * @uml.property name="hardwareendofmedium"606 */607 260 public String getHardwareendofmedium() { 608 261 return hardwareendofmedium; 609 262 } 610 263 611 /**612 * @param hardwareendofmedium613 * @uml.property name="hardwareendofmedium"614 */615 264 public void setHardwareendofmedium(String hardwareendofmedium) { 616 265 this.hardwareendofmedium = hardwareendofmedium; 617 266 } 618 267 619 /**620 * @return621 * @uml.property name="fastforwardspacefile"622 */623 268 public String getFastforwardspacefile() { 624 269 return fastforwardspacefile; 625 270 } 626 271 627 /**628 * @param fastforwardspacefile629 * @uml.property name="fastforwardspacefile"630 */631 272 public void setFastforwardspacefile(String fastforwardspacefile) { 632 273 this.fastforwardspacefile = fastforwardspacefile; 633 274 } 634 275 635 /**636 * @return637 * @uml.property name="usemtiocget"638 */639 276 public String getUsemtiocget() { 640 277 return usemtiocget; 641 278 } 642 279 643 /**644 * @param usemtiocget645 * @uml.property name="usemtiocget"646 */647 280 public void setUsemtiocget(String usemtiocget) { 648 281 this.usemtiocget = usemtiocget; 649 282 } 650 283 651 /**652 * @return653 * @uml.property name="bsfateom"654 */655 284 public String getBsfateom() { 656 285 return bsfateom; 657 286 } 658 287 659 /**660 * @param bsfateom661 * @uml.property name="bsfateom"662 */663 288 public void setBsfateom(String bsfateom) { 664 289 this.bsfateom = bsfateom; 665 290 } 666 291 667 /**668 * @return669 * @uml.property name="twoeof"670 */671 292 public String getTwoeof() { 672 293 return twoeof; 673 294 } 674 295 675 /**676 * @param twoeof677 * @uml.property name="twoeof"678 */679 296 public void setTwoeof(String twoeof) { 680 297 this.twoeof = twoeof; 681 298 } 682 299 683 /**684 * @return685 * @uml.property name="backwardspacerecord"686 */687 300 public String getBackwardspacerecord() { 688 301 return backwardspacerecord; 689 302 } 690 303 691 /**692 * @param backwardspacerecord693 * @uml.property name="backwardspacerecord"694 */695 304 public void setBackwardspacerecord(String backwardspacerecord) { 696 305 this.backwardspacerecord = backwardspacerecord; 697 306 } 698 307 699 /**700 * @return701 * @uml.property name="backwardspacefile"702 */703 308 public String getBackwardspacefile() { 704 309 return backwardspacefile; 705 310 } 706 311 707 /**708 * @param backwardspacefile709 * @uml.property name="backwardspacefile"710 */711 312 public void setBackwardspacefile(String backwardspacefile) { 712 313 this.backwardspacefile = backwardspacefile; 713 314 } 714 315 715 /**716 * @return717 * @uml.property name="forwardspacerecord"718 */719 316 public String getForwardspacerecord() { 720 317 return forwardspacerecord; 721 318 } 722 319 723 /**724 * @param forwardspacerecord725 * @uml.property name="forwardspacerecord"726 */727 320 public void setForwardspacerecord(String forwardspacerecord) { 728 321 this.forwardspacerecord = forwardspacerecord; 729 322 } 730 323 731 /**732 * @return733 * @uml.property name="forwardspacefile"734 */735 324 public String getForwardspacefile() { 736 325 return forwardspacefile; 737 326 } 738 327 739 /**740 * @param forwardspacefile741 * @uml.property name="forwardspacefile"742 */743 328 public void setForwardspacefile(String forwardspacefile) { 744 329 this.forwardspacefile = forwardspacefile; 745 330 } 746 331 747 /**748 * @return749 * @uml.property name="offlineonunmount"750 */751 332 public String getOfflineonunmount() { 752 333 return offlineonunmount; 753 334 } 754 335 755 /**756 * @param offlineonunmount757 * @uml.property name="offlineonunmount"758 */759 336 public void setOfflineonunmount(String offlineonunmount) { 760 337 this.offlineonunmount = offlineonunmount; 761 338 } 762 339 763 /**764 * @return765 * @uml.property name="maximumconcurrentjobs"766 */767 340 public String getMaximumconcurrentjobs() { 768 341 return maximumconcurrentjobs; 769 342 } 770 343 771 /**772 * @param maximumconcurrentjobs773 * @uml.property name="maximumconcurrentjobs"774 */775 344 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 776 345 this.maximumconcurrentjobs = maximumconcurrentjobs; 777 346 } 778 347 779 /**780 * @return781 * @uml.property name="maximumvolumesize"782 */783 348 public String getMaximumvolumesize() { 784 349 return maximumvolumesize; 785 350 } 786 351 787 /**788 * @param maximumvolumesize789 * @uml.property name="maximumvolumesize"790 */791 352 public void setMaximumvolumesize(String maximumvolumesize) { 792 353 this.maximumvolumesize = maximumvolumesize; 793 354 } 794 355 795 /**796 * @return797 * @uml.property name="maximumfilesize"798 */799 356 public String getMaximumfilesize() { 800 357 return maximumfilesize; 801 358 } 802 359 803 /**804 * @param maximumfilesize805 * @uml.property name="maximumfilesize"806 */807 360 public void setMaximumfilesize(String maximumfilesize) { 808 361 this.maximumfilesize = maximumfilesize; 809 362 } 810 363 811 /**812 * @return813 * @uml.property name="blockpositioning"814 */815 364 public String getBlockpositioning() { 816 365 return blockpositioning; 817 366 } 818 367 819 /**820 * @param blockpositioning821 * @uml.property name="blockpositioning"822 */823 368 public void setBlockpositioning(String blockpositioning) { 824 369 this.blockpositioning = blockpositioning; 825 370 } 826 371 827 /**828 * @return829 * @uml.property name="maximumnetworkbuffersize"830 */831 372 public String getMaximumnetworkbuffersize() { 832 373 return maximumnetworkbuffersize; 833 374 } 834 375 835 /**836 * @param maximumnetworkbuffersize837 * @uml.property name="maximumnetworkbuffersize"838 */839 376 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) { 840 377 this.maximumnetworkbuffersize = maximumnetworkbuffersize; 841 378 } 842 379 843 /**844 * @return845 * @uml.property name="maximumspoolsize"846 */847 380 public String getMaximumspoolsize() { 848 381 return maximumspoolsize; 849 382 } 850 383 851 /**852 * @param maximumspoolsize853 * @uml.property name="maximumspoolsize"854 */855 384 public void setMaximumspoolsize(String maximumspoolsize) { 856 385 this.maximumspoolsize = maximumspoolsize; 857 386 } 858 387 859 /**860 * @return861 * @uml.property name="maximumjobspoolsize"862 */863 388 public String getMaximumjobspoolsize() { 864 389 return maximumjobspoolsize; 865 390 } 866 391 867 /**868 * @param maximumjobspoolsize869 * @uml.property name="maximumjobspoolsize"870 */871 392 public void setMaximumjobspoolsize(String maximumjobspoolsize) { 872 393 this.maximumjobspoolsize = maximumjobspoolsize; 873 394 } 874 395 875 /**876 * @return877 * @uml.property name="spooldirectory"878 */879 396 public String getSpooldirectory() { 880 397 return spooldirectory; 881 398 } 882 399 883 /**884 * @param spooldirectory885 * @uml.property name="spooldirectory"886 */887 400 public void setSpooldirectory(String spooldirectory) { 888 401 this.spooldirectory = spooldirectory; 889 402 } 890 403 891 /**892 * @return893 * @uml.property name="maximumpartsize"894 */895 404 public String getMaximumpartsize() { 896 405 return maximumpartsize; 897 406 } 898 407 899 /**900 * @param maximumpartsize901 * @uml.property name="maximumpartsize"902 */903 408 public void setMaximumpartsize(String maximumpartsize) { 904 409 this.maximumpartsize = maximumpartsize; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDStorageItem.java
r858 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class SDStorageItem extends ItemType implements UserObjectItem{ 3 /**4 * @uml.property name="name"5 */6 3 private String name; 7 /**8 * @uml.property name="workingdirectory"9 */10 4 private String workingdirectory; 11 /**12 * @uml.property name="piddirectory"13 */14 5 private String piddirectory; 15 /**16 * @uml.property name="heartbeatinterval"17 */18 6 private String heartbeatinterval; 19 /**20 * @uml.property name="clientconnectwait"21 */22 7 private String clientconnectwait; 23 /**24 * @uml.property name="maximumconcurrentjobs"25 */26 8 private String maximumconcurrentjobs; 27 /**28 * @uml.property name="sdaddresses"29 */30 9 private String sdaddresses; 31 /**32 * @uml.property name="sdport"33 */34 10 private String sdport; 35 /**36 * @uml.property name="sdaddress"37 */38 11 private String sdaddress; 39 12 … … 44 17 setPiddirectory(piddirectory); 45 18 } 46 /**47 * @return48 * @uml.property name="name"49 */50 19 public String getName() { 51 20 return name; 52 21 } 53 /**54 * @param name55 * @uml.property name="name"56 */57 22 public void setName(String name) { 58 23 this.name = name; 59 24 } 60 /**61 * @return62 * @uml.property name="workingdirectory"63 */64 25 public String getWorkingdirectory() { 65 26 return workingdirectory; 66 27 } 67 /**68 * @param workingdirectory69 * @uml.property name="workingdirectory"70 */71 28 public void setWorkingdirectory(String workingdirectory) { 72 29 this.workingdirectory = workingdirectory; 73 30 } 74 /**75 * @return76 * @uml.property name="piddirectory"77 */78 31 public String getPiddirectory() { 79 32 return piddirectory; 80 33 } 81 /**82 * @param piddirectory83 * @uml.property name="piddirectory"84 */85 34 public void setPiddirectory(String piddirectory) { 86 35 this.piddirectory = piddirectory; 87 36 } 88 /**89 * @return90 * @uml.property name="heartbeatinterval"91 */92 37 public String getHeartbeatinterval() { 93 38 return heartbeatinterval; 94 39 } 95 /**96 * @param heartbeatinterval97 * @uml.property name="heartbeatinterval"98 */99 40 public void setHeartbeatinterval(String heartbeatinterval) { 100 41 this.heartbeatinterval = heartbeatinterval; 101 42 } 102 /**103 * @return104 * @uml.property name="clientconnectwait"105 */106 43 public String getClientconnectwait() { 107 44 return clientconnectwait; 108 45 } 109 /**110 * @param clientconnectwait111 * @uml.property name="clientconnectwait"112 */113 46 public void setClientconnectwait(String clientconnectwait) { 114 47 this.clientconnectwait = clientconnectwait; 115 48 } 116 /**117 * @return118 * @uml.property name="maximumconcurrentjobs"119 */120 49 public String getMaximumconcurrentjobs() { 121 50 return maximumconcurrentjobs; 122 51 } 123 /**124 * @param maximumconcurrentjobs125 * @uml.property name="maximumconcurrentjobs"126 */127 52 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 128 53 this.maximumconcurrentjobs = maximumconcurrentjobs; 129 54 } 130 /**131 * @return132 * @uml.property name="sdaddresses"133 */134 55 public String getSdaddresses() { 135 56 return sdaddresses; 136 57 } 137 /**138 * @param sdaddresses139 * @uml.property name="sdaddresses"140 */141 58 public void setSdaddresses(String sdaddresses) { 142 59 this.sdaddresses = sdaddresses; 143 60 } 144 /**145 * @return146 * @uml.property name="sdport"147 */148 61 public String getSdport() { 149 62 return sdport; 150 63 } 151 /**152 * @param sdport153 * @uml.property name="sdport"154 */155 64 public void setSdport(String sdport) { 156 65 this.sdport = sdport; 157 66 } 158 /**159 * @return160 * @uml.property name="sdaddress"161 */162 67 public String getSdaddress() { 163 68 return sdaddress; 164 69 } 165 /**166 * @param sdaddress167 * @uml.property name="sdaddress"168 */169 70 public void setSdaddress(String sdaddress) { 170 71 this.sdaddress = sdaddress; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ScheduleItem.java
r858 r865 2 2 public class ScheduleItem extends ItemType implements UserObjectItem{ 3 3 4 /**5 * @uml.property name="name"6 */7 4 private String name; 8 /**9 * @uml.property name="run"10 */11 5 private String run; 12 6 … … 17 11 setRun(run); 18 12 } 19 /**20 * @return21 * @uml.property name="name"22 */23 13 public String getName() { 24 14 return name; 25 15 } 26 16 27 /**28 * @param name29 * @uml.property name="name"30 */31 17 public void setName(String name) { 32 18 this.name = name; 33 19 } 34 20 35 /**36 * @return37 * @uml.property name="run"38 */39 21 public String getRun() { 40 22 return run; 41 23 } 42 24 43 /**44 * @param run45 * @uml.property name="run"46 */47 25 public void setRun(String run) { 48 26 this.run = run; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/StorageItem.java
r858 r865 2 2 public class StorageItem extends ItemType implements UserObjectItem{ 3 3 4 /**5 * @uml.property name="name"6 */7 4 private String name; 8 /**9 * @uml.property name="address"10 */11 5 private String address; 12 /**13 * @uml.property name="sdport"14 */15 6 private String sdport; 16 /**17 * @uml.property name="password"18 */19 7 private String password; 20 /**21 * @uml.property name="device"22 */23 8 private String device; 24 /**25 * @uml.property name="mediatype"26 */27 9 private String mediatype; 28 /**29 * @uml.property name="autochanger"30 */31 10 private String autochanger; 32 /**33 * @uml.property name="maximumconcurrentjobs"34 */35 11 private String maximumconcurrentjobs; 36 /**37 * @uml.property name="allowcompression"38 */39 12 private String allowcompression; 40 /**41 * @uml.property name="heartbeatinterval"42 */43 13 private String heartbeatinterval; 44 14 45 15 public StorageItem() {} 46 16 47 /**48 * @return49 * @uml.property name="name"50 */51 17 public String getName() { 52 18 return name; 53 19 } 54 20 55 /**56 * @param name57 * @uml.property name="name"58 */59 21 public void setName(String name) { 60 22 this.name = name; 61 23 } 62 24 63 /**64 * @return65 * @uml.property name="address"66 */67 25 public String getAddress() { 68 26 return address; 69 27 } 70 28 71 /**72 * @param address73 * @uml.property name="address"74 */75 29 public void setAddress(String address) { 76 30 this.address = address; 77 31 } 78 32 79 /**80 * @return81 * @uml.property name="sdport"82 */83 33 public String getSdport() { 84 34 return sdport; 85 35 } 86 36 87 /**88 * @param sdport89 * @uml.property name="sdport"90 */91 37 public void setSdport(String sdport) { 92 38 this.sdport = sdport; 93 39 } 94 40 95 /**96 * @return97 * @uml.property name="password"98 */99 41 public String getPassword() { 100 42 return password; 101 43 } 102 44 103 /**104 * @param password105 * @uml.property name="password"106 */107 45 public void setPassword(String password) { 108 46 this.password = password; 109 47 } 110 48 111 /**112 * @return113 * @uml.property name="device"114 */115 49 public String getDevice() { 116 50 return device; 117 51 } 118 52 119 /**120 * @param device121 * @uml.property name="device"122 */123 53 public void setDevice(String device) { 124 54 this.device = device; 125 55 } 126 56 127 /**128 * @return129 * @uml.property name="mediatype"130 */131 57 public String getMediatype() { 132 58 return mediatype; 133 59 } 134 60 135 /**136 * @param mediatype137 * @uml.property name="mediatype"138 */139 61 public void setMediatype(String mediatype) { 140 62 this.mediatype = mediatype; 141 63 } 142 64 143 /**144 * @return145 * @uml.property name="autochanger"146 */147 65 public String getAutochanger() { 148 66 return autochanger; 149 67 } 150 68 151 /**152 * @param autochanger153 * @uml.property name="autochanger"154 */155 69 public void setAutochanger(String autochanger) { 156 70 this.autochanger = autochanger; 157 71 } 158 72 159 /**160 * @return161 * @uml.property name="maximumconcurrentjobs"162 */163 73 public String getMaximumconcurrentjobs() { 164 74 return maximumconcurrentjobs; 165 75 } 166 76 167 /**168 * @param maximumconcurrentjobs169 * @uml.property name="maximumconcurrentjobs"170 */171 77 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 172 78 this.maximumconcurrentjobs = maximumconcurrentjobs; 173 79 } 174 80 175 /**176 * @return177 * @uml.property name="allowcompression"178 */179 81 public String getAllowcompression() { 180 82 return allowcompression; 181 83 } 182 84 183 /**184 * @param allowcompression185 * @uml.property name="allowcompression"186 */187 85 public void setAllowcompression(String allowcompression) { 188 86 this.allowcompression = allowcompression; 189 87 } 190 88 191 /**192 * @return193 * @uml.property name="heartbeatinterval"194 */195 89 public String getHeartbeatinterval() { 196 90 return heartbeatinterval; 197 91 } 198 92 199 /**200 * @param heartbeatinterval201 * @uml.property name="heartbeatinterval"202 */203 93 public void setHeartbeatinterval(String heartbeatinterval) { 204 94 this.heartbeatinterval = heartbeatinterval; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/TreeItem.java
r844 r865 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 /** 3 * 4 * @author tgoecke 5 * 6 */ 3 7 public class TreeItem extends ItemType implements UserObjectItem{ 4 8 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/UserObjectItem.java
r858 r865 4 4 */ 5 5 /** 6 * Common interface of all resource item classes. 6 7 * @author tgoecke 7 8 */ 8 9 public interface UserObjectItem { 9 10 10 /**11 * @uml.property name="resType"12 */13 11 public String getResType(); 14 /**15 * @param ResType16 * @uml.property name="resType"17 */18 12 public void setResType(String ResType); 19 13 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/UserObjectItemType.java
r858 r865 3 3 import javax.swing.tree.DefaultMutableTreeNode; 4 4 import com.icesoft.faces.component.tree.IceUserObject; 5 5 /** 6 * UserObjectItemType contains the UserObjectItem i.e the ResourceItem. 7 * The visual properties of the tree node are set using the UserObjectItemType. 8 * @author tgoecke 9 * 10 */ 6 11 public class UserObjectItemType extends IceUserObject { 7 12
Note:
See TracChangeset
for help on using the changeset viewer.