Changeset 858
- Timestamp:
- Apr 9, 2010, 10:56:07 AM (15 years ago)
- Location:
- vanHelsing/trunk/gui
- Files:
-
- 2 added
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
vanHelsing/trunk/gui/.classpath
r854 r858 95 95 <classpathentry kind="lib" path="WebContent/WEB-INF/lib/XmlSchema-1.4.3.jar"/> 96 96 <classpathentry kind="lib" path="WebContent/WEB-INF/lib/VanHelsing-test-client.jar"/> 97 <classpathentry kind="con" path="com.soyatec.uml.CONTAINER"/> 97 98 <classpathentry kind="output" path="build/classes"/> 98 99 </classpath> -
vanHelsing/trunk/gui/.project
r830 r858 2 2 <projectDescription> 3 3 <name>vanHelsingGUI</name> 4 <comment> </comment>4 <comment>@key 32303037303533312D31302076616E48656C73696E674755492F74676F65636B65 </comment> 5 5 <projects> 6 6 </projects> … … 26 26 </arguments> 27 27 </buildCommand> 28 <buildCommand> 29 <name>com.soyatec.additional.Builder</name> 30 <arguments> 31 </arguments> 32 </buildCommand> 28 33 </buildSpec> 29 34 <natures> … … 33 38 <nature>org.eclipse.jdt.core.javanature</nature> 34 39 <nature>org.eclipse.wst.jsdt.core.jsNature</nature> 40 <nature>com.soyatec.additional.Nature</nature> 35 41 </natures> 36 42 </projectDescription> -
vanHelsing/trunk/gui/WebContent/menu.jspx
r857 r858 12 12 <title>Van Helsing</title> 13 13 <ice:outputStyle href="./xmlhttp/css/rime/rime.css" /> 14 <ice:outputStyle href="./css/tree.css" /> 14 15 15 16 </head> … … 18 19 <ice:form> 19 20 <ice:panelGroup style="float:top"> 21 <ice:commandButton id="newRes" 22 value="create resource" 23 actionListener="#{configurationBean.newResourceButtonListener}"/> 24 <ice:commandButton id="reloadRes" 25 value="reload Tree" 26 actionListener="#{configurationBean.reloadResourceButtonListener}" /> 20 27 <ice:commandButton id="saveRes" 21 28 value="update resource" 22 29 actionListener="#{configurationBean.saveButtonListener}"/> 23 <ice:commandButton id="newRes" 24 value="create resource" 25 actionListener="#{configurationBean.newResourceButtonListener}"/>30 <ice:commandButton id="deleteRes" 31 value="delete resource" 32 actionListener="#{configurationBean.deleteResourceButtonListener}" /> 26 33 </ice:panelGroup> 27 34 … … 45 52 </f:facet> 46 53 <f:facet name="content"> 47 < !-- <ice:panelGroup> -->48 <!-- styleClass="selectedNode#{item.userObject eq treeController.selectedUserObject}"49 style="display: inline" > --> 54 <ice:panelGroup styleClass="selectedNode#{item.userObject.userObject.resId eq configurationBean.selectedId} selectedComponent#{item.userObject.selected}" 55 style="display:inline" > 56 50 57 <ice:commandLink actionListener="#{configurationBean.userObjectItemNodeSelected}"> 51 58 <f:param name="userObject.resId" value="#{item.userObject.userObject.resId}"/> 52 59 <ice:outputText id="knoten" value="#{item.userObject.userObject.value}"/> 53 54 < !-- </ice:panelGroup> -->60 </ice:commandLink> 61 </ice:panelGroup> 55 62 </f:facet> 56 63 </ice:treeNode> … … 69 76 <ice:outputText value="Key" /> 70 77 </f:facet> 71 <ice:outputText value="#{item.key}" /> 78 <ice:outputText style="color:red" rendered="#{item.required eq true}" value="#{item.key}" /> 79 <ice:outputText style="color:green" rendered="#{item.required eq false}" value="#{item.key}" /> 72 80 </ice:column> 73 81 <ice:column> … … 76 84 </f:facet> 77 85 <ice:inputText rendered="#{item.inputText != null}" partialSubmit="true" value="#{item.keyValue}" /> 78 <ice:selectOneMenu id="KeyValue" 79 rendered="#{item.selectOneMenu != null}" 80 valueChangeListener="#{configurationBean.userObjectItemOptionSelected}" 81 value="#{item.keyValue}" 82 partialSubmit="true"> 83 <f:selectItems id="KeyValueItems" 84 value="#{item.keyValueList}"/> 85 </ice:selectOneMenu> 86 <ice:panelGroup> 87 <ice:selectOneMenu id="KeyValue" 88 rendered="#{item.selectOneMenu != null}" 89 valueChangeListener="#{configurationBean.userObjectItemOptionSelected}" 90 value="#{item.keyValue}" 91 partialSubmit="true"> 92 <f:selectItems id="KeyValueItems" 93 value="#{item.keyValueList}"/> 94 </ice:selectOneMenu> 95 <ice:commandButton id="newRes" 96 value="+" 97 rendered="#{item.selectOneMenu != null}" 98 actionListener="#{configurationBean.newResourceButtonListener}"/> 99 </ice:panelGroup> 86 100 </ice:column> 87 101 </ice:dataTable> -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/BeanUtil.java
r857 r858 38 38 return bundle; 39 39 } 40 public static boolean getRequired(String type, String key){ 41 String s = getFieldProperty(type, key, 2); 42 if (s.equals("true") )return true; 43 return false; 44 } 40 45 //getRenderer returns rendererType based on properties 41 46 public static String getRenderer(String type, String key){ 47 return getFieldProperty(type, key, 1); 48 } 49 public static String getFieldProperty(String type, String key, int i){ 42 50 String daemon = "director"; 43 51 String res = "inputText"; … … 51 59 key = key.toLowerCase(); 52 60 String result[] = getProperties((daemon+"."+type+"."+key)); 53 if (result[1].equals("boolean")){ 54 return "radioGroup"; 61 if (i == 1) { 62 if (result[1].equals("boolean")){ 63 return "radioGroup"; 64 } 65 if (!(result[0].equals("0"))){ 66 return "selectOneMenu"; 67 } 68 return res; 55 69 } 56 if (!(result[0].equals("0"))){ 57 return "selectOneMenu"; 58 } 59 70 if (i == 2) return result[2]; 60 71 return res; 61 72 } 73 62 74 //Statusmeldungen an den Client 63 75 public static void setInfoMessage(String client, String message){ … … 78 90 } 79 91 92 public static String getAccessType(String type){ 93 if (type.equals("jobdefs")) return "job"; 94 return type; 95 } 96 80 97 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ConfigurationBean.java
r857 r858 6 6 import javax.faces.event.ActionEvent; 7 7 import javax.faces.event.ValueChangeEvent; 8 import javax.faces.model.SelectItem; 8 9 import javax.swing.tree.DefaultMutableTreeNode; 9 10 import javax.swing.tree.DefaultTreeModel; … … 20 21 private DefaultTreeModel tree; 21 22 private ArrayList<ViewItem> selectedObject; 23 private String selectedId; 22 24 23 25 public ConfigurationBean() { … … 37 39 38 40 Client c = new Client(); 39 String[] nodes = { "Director", "Storage", " Catalog", "Autochanger",41 String[] nodes = { "Director", "Storage", "Autochanger", 40 42 "Client", "FileSet", "FDClient", "Schedule", "SDStorage", 41 43 "Console", "Catalog", "SDDevice", "Job", "JobDefs", "Messages", … … 44 46 setTree(super.createTree(root, nodes, "Configuration")); 45 47 46 // forall header wird eine ResourceList[] angefragt 48 // \forall header wird eine ResourceList[] angefragt 49 47 50 for (int i = 0; i < tree.getChildCount(root); i++) { 48 51 header = (DefaultMutableTreeNode) tree.getChild(root, i); … … 68 71 } 69 72 } 70 } 73 } 71 74 /* 72 75 * for (int i = 0; i < tree.getChildCount(root); i++){ header = … … 96 99 selectedObject = new ArrayList<ViewItem>(); 97 100 String Id = BeanUtil.getRequestParameter("userObject.resId"); 101 String selected = BeanUtil.getRequestParameter("ice.event.shift"); 98 102 node = getNode(Id, tree); 103 if (selected.equals("true")){ 104 ((UserObjectItemType)node.getUserObject()).switchSelected(); 105 } 99 106 String type = ((UserObjectItem) ((UserObjectItemType) node 100 107 .getUserObject()).getUserObject()).getResType(); … … 104 111 .getUserObject()).getUserObject())).getDirector(); 105 112 String classType = "de.dass_it.vanhelsing.gui.items." + type + "Item"; 113 String accessType = BeanUtil.getAccessType(type.toLowerCase()); 106 114 // Daten aus dem UserObjectItem extrahieren 107 115 try { … … 127 135 vi.setResName(resName); 128 136 vi.setDirector(director); 129 vi.setRendererFlag(BeanUtil.getRenderer(type, key)); 130 System.err.println(vi.getRenderer()); 131 System.err.println(vi.getInputText()); 132 System.err.println(vi.getSelectOneMenu()+"\n\n"); 137 vi.setRendererFlag(BeanUtil.getRenderer(accessType, key)); 138 vi.setRequired(BeanUtil.getRequired(accessType, key)); 139 if (vi.getSelectOneMenu() != null){ 140 DefaultMutableTreeNode[] dmtn = getChildNodes(tree, vi.getKey()); 141 if (dmtn != null) { 142 SelectItem[] si = new SelectItem[dmtn.length]; 143 String objectType; 144 for (int i = 0; i < dmtn.length; i++){ 145 UserObjectItem nodeObject = ((UserObjectItemType)dmtn[i].getUserObject()).getUserObject(); 146 objectType = "de.dass_it.vanhelsing.gui.items." + vi.getKey() +"Item"; 147 Class subClass = Class.forName(objectType); 148 Class myClass = nodeObject.getClass().asSubclass(subClass); 149 Method o = myClass.getMethod("getName", (Class[])null); 150 si[i] = new SelectItem((String)o.invoke(nodeObject, (Object[])null), 151 (String)o.invoke(nodeObject, (Object[])null)); 152 153 } 154 vi.setKeyValueList(si); 155 } 156 } 133 157 selectedObject.add(vi); 134 158 } … … 139 163 } 140 164 } 165 private DefaultMutableTreeNode[] getChildNodes(DefaultTreeModel tree2, String key) { 166 DefaultMutableTreeNode[] dmtn; 167 DefaultMutableTreeNode root = (DefaultMutableTreeNode)tree2.getRoot(); 168 DefaultMutableTreeNode node; 169 for (int i = 0; i< root.getChildCount(); i++){ 170 node = (DefaultMutableTreeNode)root.getChildAt(i); 171 if (((UserObjectItemType)(node.getUserObject())).getUserObject().getResType().equals(key)){ 172 dmtn = new DefaultMutableTreeNode[node.getChildCount()]; 173 for (int j = 0; j < node.getChildCount(); j++){ 174 dmtn[j] = (DefaultMutableTreeNode)node.getChildAt(j); 175 } 176 return dmtn; 177 } 178 } 179 return null; 180 } 141 181 public void newResourceButtonListener(ActionEvent ae){ 182 DefaultMutableTreeNode node; 183 UserObjectItem userObject; 184 selectedObject = new ArrayList<ViewItem>(); 185 String Id = BeanUtil.getRequestParameter("userObject.ResId"); 186 String shift = BeanUtil.getRequestParameter("ice.event.shift"); 187 System.err.println(shift); 188 if (Id == null){ 189 return; 190 } 191 node = getNode(Id, tree); 192 String type = ((UserObjectItem) ((UserObjectItemType) node 193 .getUserObject()).getUserObject()).getResType(); 194 ViewItem vi; 195 String[] val; 196 try{ 197 String type2 = "de.dass_it.vanhelsing.gui.items." + type + "Item"; 198 Class newClass = Class.forName(type2); 199 for (Method m : newClass.getDeclaredMethods()){ 200 if (m.getName().startsWith("get")) { 201 vi = new ViewItem(); 202 vi.setKey(m.getName().substring(3)); 203 vi.setRendererFlag(BeanUtil.getRenderer(type, vi.getKey())); 204 if (vi.getSelectOneMenu() != null){ 205 DefaultMutableTreeNode[] dmtn = getChildNodes(tree, vi.getKey()); 206 if (dmtn != null) { 207 SelectItem[] si = new SelectItem[dmtn.length]; 208 String objectType; 209 for (int i = 0; i < dmtn.length; i++){ 210 UserObjectItem nodeObject = ((UserObjectItemType)dmtn[i].getUserObject()).getUserObject(); 211 objectType = "de.dass_it.vanhelsing.gui.items." + vi.getKey() +"Item"; 212 Class subClass = Class.forName(objectType); 213 Class myClass = nodeObject.getClass().asSubclass(subClass); 214 Method o = myClass.getMethod("getName", (Class[])null); 215 si[i] = new SelectItem((String)o.invoke(nodeObject, (Object[])null), 216 (String)o.invoke(nodeObject, (Object[])null)); 217 //System.err.println("si[i]"+si[i].getLabel()); 218 219 } 220 vi.setKeyValueList(si); 221 } 222 } 223 if (vi.getInputText() != null){ 224 vi.setValue(BeanUtil.getProperty("director."+type+"."+vi.getKey()+".def")); 225 } 226 } 227 } 228 } catch (Exception e){ 229 e.printStackTrace(); 230 } 142 231 143 232 } … … 146 235 } 147 236 237 public void reloadResourceButtonListener(ActionEvent ae){ 238 init(); 239 } 240 public void deleteResourceButtonListener(ActionEvent ae){ 241 BeanUtil.setInfoMessage(null, "Diese Methode ist noch nicht implementiert."); 242 } 243 148 244 public void saveButtonListener(ActionEvent ae) { 149 Client c = new Client(); 150 ResourceInfo ri = new ResourceInfo(); 151 SetSimpleResourceResponse s2r2; 152 ri.setDirector( selectedObject.get(0).getDirector() ); 153 ri.setResId( selectedObject.get(0).getResId() ); 154 ri.setResName( selectedObject.get(0).getResName() ); 155 ri.setResType( selectedObject.get(0).getResType() ); 156 // ResourceAttribute 157 String key, value; 158 ResourceAttributeType[] ra = new ResourceAttributeType[selectedObject.size()]; 159 for (int i = 0; i < selectedObject.size(); i++) { 160 key = selectedObject.get(i).getKey(); 161 value = selectedObject.get(i).getKeyValue(); 162 ra[i] = new ResourceAttributeType(); 163 ra[i].setKey(key); 164 ra[i].setValue(value); 165 } 166 SetSimpleResource s2r = new SetSimpleResource(); 167 s2r.setResAttribute(ra); 168 s2r.setResInfo(ri); 169 s2r2 = c.setSimpleResource(s2r); 170 System.err.println("Status setSimpleRes: "+s2r2.getStatus()); 171 BeanUtil.setErrorMessage(null, "Status setSimpleRessource: "+s2r2.getStatus()); 172 173 /*String status = s2r2.getStatus(); 174 if (selectedObject.get(0) != null){ 175 selectedObject.get(0).setResId(s2r2.getResId()); 176 }*/ 177 // TODO: write ResId to selectedObject 178 // selectedObject.get(0).setResId(grt.getResId()); 179 // valueChangeEffect.setFired(false); 245 if (selectedObject == null){ 246 BeanUtil.setInfoMessage(null, "bitte eine Resource zum Ändern auswählen"); 247 } else { 248 Client c = new Client(); 249 ResourceInfo ri = new ResourceInfo(); 250 SetSimpleResourceResponse s2r2; 251 ri.setDirector( selectedObject.get(0).getDirector() ); 252 ri.setResId( selectedObject.get(0).getResId() ); 253 ri.setResName( selectedObject.get(0).getResName() ); 254 ri.setResType( selectedObject.get(0).getResType() ); 255 // ResourceAttribute 256 String key, value; 257 ResourceAttributeType[] ra = new ResourceAttributeType[selectedObject.size()]; 258 for (int i = 0; i < selectedObject.size(); i++) { 259 key = selectedObject.get(i).getKey(); 260 value = selectedObject.get(i).getKeyValue(); 261 ra[i] = new ResourceAttributeType(); 262 ra[i].setKey(key); 263 ra[i].setValue(value); 264 } 265 SetSimpleResource s2r = new SetSimpleResource(); 266 s2r.setResAttribute(ra); 267 s2r.setResInfo(ri); 268 s2r2 = c.setSimpleResource(s2r); 269 System.err.println("Status setSimpleRes: "+s2r2.getStatus()); 270 BeanUtil.setErrorMessage(null, "Status setSimpleRessource: "+s2r2.getStatus()); 271 272 /*String status = s2r2.getStatus(); 273 if (selectedObject.get(0) != null){ 274 selectedObject.get(0).setResId(s2r2.getResId()); 275 }*/ 276 // TODO: write ResId to selectedObject 277 // selectedObject.get(0).setResId(grt.getResId()); 278 // valueChangeEffect.setFired(false); 279 } 180 280 } 181 281 … … 195 295 this.selectedObject = selectedObject; 196 296 } 297 public int getSelectedId(){ 298 if (selectedObject != null){ 299 if (selectedObject.size() > 0){ 300 return selectedObject.get(0).getResId(); 301 } 302 } 303 return -1; 304 } 197 305 198 306 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/PropertyBundle.java
r857 r858 25 25 initialize(); 26 26 } 27 key = key.toLowerCase(); 27 28 return properties.getString(key); 28 29 } catch (Exception e) { -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/SimpleResource.java
r844 r858 5 5 6 6 public class SimpleResource{ 7 /** 8 * @uml.property name="resourceInfo" 9 * @uml.associationEnd 10 */ 7 11 private ResourceInfo resourceInfo; 12 /** 13 * @uml.property name="resourceAttributeType" 14 * @uml.associationEnd multiplicity="(0 -1)" 15 */ 8 16 private ResourceAttributeType[] resourceAttributeType; 9 17 … … 14 22 } 15 23 24 /** 25 * @return 26 * @uml.property name="resourceInfo" 27 */ 16 28 public ResourceInfo getResourceInfo() { 17 29 return resourceInfo; 18 30 } 31 /** 32 * @param resourceInfo 33 * @uml.property name="resourceInfo" 34 */ 19 35 public void setResourceInfo(ResourceInfo resourceInfo) { 20 36 this.resourceInfo = resourceInfo; 21 37 } 38 /** 39 * @return 40 * @uml.property name="resourceAttributeType" 41 */ 22 42 public ResourceAttributeType[] getResourceAttributeType() { 23 43 return resourceAttributeType; 24 44 } 45 /** 46 * @param resourceAttributeType 47 * @uml.property name="resourceAttributeType" 48 */ 25 49 public void setResourceAttributeType( 26 50 ResourceAttributeType[] resourceAttributeType) { -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/TreeNavigation.java
r856 r858 17 17 */ 18 18 public class TreeNavigation extends BeanUtil { 19 /** 20 * @uml.property name="tree" 21 * @uml.associationEnd 22 */ 19 23 private DefaultTreeModel tree; 20 24 //private Logger logger = Logger.getLogger(this.getClass()); … … 30 34 UserObjectItem uoi = new TreeItem("Configuration"); 31 35 uoi.setResType("Tree"); 32 item.setUserObject Item(uoi);36 item.setUserObject(uoi); 33 37 root.setUserObject(item); 34 38 … … 68 72 } 69 73 //ItemObjekt erzeugen und an das UserObjekt referenzieren 70 userObject.setUserObject Item((UserObjectItem)o);74 userObject.setUserObject((UserObjectItem)o); 71 75 //Eine Referenz auf das UserObjekt wird an das Nodeobjekt übergeben 72 76 node.setUserObject(userObject); … … 126 130 ((ItemType)o).setValue(((ItemType)o).getResName()); 127 131 //ItemObjekt erzeugen und an das UserObjekt referenzieren 128 userObject.setUserObject Item((UserObjectItem)o);132 userObject.setUserObject((UserObjectItem)o); 129 133 //Eine Referenz auf das UserObjekt wird an das Nodeobjekt übergeben 130 134 node.setUserObject(userObject); … … 182 186 if(!(key.isEmpty() && value.isEmpty())){ 183 187 key = key.replaceAll(" ", ""); 188 key = key.toLowerCase(); 184 189 key = key.replaceFirst(new Character(key.charAt(0)).toString(), 185 190 new Character(Character.toUpperCase(key.charAt(0))).toString()); … … 228 233 return node; 229 234 } 235 236 230 237 } 231 238 return null; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ValidationParser.java
r856 r858 33 33 continue; 34 34 } 35 if (line.startsWith("RES_ITEM")){ 36 lineParts = line.split(" "); 37 name = lineParts[1].substring(0, (lineParts[1].length()-2)); 38 state = "res"; 39 continue; 40 41 } 35 42 if (line.startsWith("};")){ 36 43 state = ""; … … 117 124 } 118 125 private static String getJavaReq(String s){ 119 if ( s. equals("ITEM_REQUIRED") ){126 if ( s.contains("ITEM_REQUIRED") ){ 120 127 s = "true"; 121 128 } else { … … 133 140 return s; 134 141 } 142 /** 143 * @author tgoecke 144 */ 135 145 private enum prettyNames{ 136 146 CATALOG ("cat_items", "catalog"), … … 143 153 RUNSCRIPT ("runscript_items", "runscript"), 144 154 SCHEDULE ("sch_items", "schedule"), 145 STORAGE DAEMON ("store_items", "storagedaemon"),155 STORAGE ("store_items", "storage"), 146 156 AUTOCHANGER ("changer_items", "autochanger"), 147 DEVICE ("dev_items", "device"); 157 DEVICE ("dev_items", "device"), 158 JOB("job_items", "job"), 159 MESSAGE("msgs_item","message"); 148 160 149 161 private String ugly; … … 155 167 } 156 168 } 169 /** 170 * @author tgoecke 171 */ 157 172 private enum conf2type{ 173 /** 174 * @uml.property name="sTOREPOOL" 175 * @uml.associationEnd 176 */ 158 177 STOREPOOL ("store_pool", "boolean"), 178 /** 179 * @uml.property name="sTOREBIT" 180 * @uml.associationEnd 181 */ 159 182 STOREBIT ("store_bit","boolean"), 183 /** 184 * @uml.property name="sTORE_STR" 185 * @uml.associationEnd 186 */ 160 187 STORE_STR ("store_str","String"), 188 /** 189 * @uml.property name="sTORE_NAME" 190 * @uml.associationEnd 191 */ 161 192 STORE_NAME ("store_name", "String"), 193 /** 194 * @uml.property name="sTORE_STRNAME" 195 * @uml.associationEnd 196 */ 162 197 STORE_STRNAME ("store_strname", "String"), 198 /** 199 * @uml.property name="sTORE_PINT32" 200 * @uml.associationEnd 201 */ 163 202 STORE_PINT32 ("store_pint32", "int"), 203 /** 204 * @uml.property name="sTORE_SIZE" 205 * @uml.associationEnd 206 */ 164 207 STORE_SIZE ("store_size", "int"), 208 /** 209 * @uml.property name="sTORE_DIR" 210 * @uml.associationEnd 211 */ 165 212 STORE_DIR ("store_dir", "path"), 213 /** 214 * @uml.property name="sTORE_PASSWORD" 215 * @uml.associationEnd 216 */ 166 217 STORE_PASSWORD ("store_password", "Password"), 218 /** 219 * @uml.property name="sTORE_TIME" 220 * @uml.associationEnd 221 */ 167 222 STORE_TIME ("store_time", "Date"), 223 /** 224 * @uml.property name="sTORE_ACL" 225 * @uml.associationEnd 226 */ 168 227 STORE_ACL ("store_acl", "Acl"), 228 /** 229 * @uml.property name="sTORE_RES" 230 * @uml.associationEnd 231 */ 169 232 STORE_RES ("store_res", "Resource"); 170 233 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ViewItem.java
r857 r858 6 6 7 7 public class ViewItem extends ItemType implements UserObjectItem { 8 /** 9 * @uml.property name="key" 10 */ 8 11 private String key; 12 /** 13 * @uml.property name="keyValue" 14 */ 9 15 private String keyValue; 16 /** 17 * @uml.property name="inputText" 18 */ 10 19 private String inputText; 20 /** 21 * @uml.property name="selectOneMenu" 22 */ 11 23 private String selectOneMenu; 24 /** 25 * @uml.property name="radioGroup" 26 */ 12 27 private String radioGroup; 13 private boolean necessary; 28 /** 29 * @uml.property name="required" 30 */ 31 private boolean required; 32 /** 33 * @uml.property name="renderer" 34 */ 14 35 private String renderer; 36 /** 37 * @uml.property name="dataType" 38 */ 15 39 private String dataType; 40 /** 41 * @uml.property name="keyValueList" 42 * @uml.associationEnd multiplicity="(0 -1)" 43 */ 16 44 private SelectItem[] keyValueList; 17 45 … … 21 49 } 22 50 23 public boolean isNecessary() { 24 return necessary; 25 } 26 27 public void setNecessary(boolean necessary) { 28 this.necessary = necessary; 29 } 30 51 /** 52 * @return 53 * @uml.property name="required" 54 */ 55 public boolean getRequired() { 56 return required; 57 } 58 59 /** 60 * @param necessary 61 * @uml.property name="required" 62 */ 63 public void setRequired(boolean required) { 64 this.required = required; 65 } 66 67 /** 68 * @return 69 * @uml.property name="renderer" 70 */ 31 71 public String getRenderer() { 32 72 return renderer; 33 73 } 34 74 75 /** 76 * @param renderer 77 * @uml.property name="renderer" 78 */ 35 79 public void setRenderer(String renderer) { 36 80 this.renderer = renderer; 37 81 } 38 82 83 /** 84 * @return 85 * @uml.property name="dataType" 86 */ 39 87 public String getDataType() { 40 88 return dataType; 41 89 } 42 90 91 /** 92 * @param dataType 93 * @uml.property name="dataType" 94 */ 43 95 public void setDataType(String dataType) { 44 96 this.dataType = dataType; … … 60 112 } 61 113 //eigene Felder für die Tabellenspalten 114 /** 115 * @param key 116 * @uml.property name="key" 117 */ 62 118 public void setKey(String key) { 63 119 this.key = key; 64 120 } 65 121 122 /** 123 * @return 124 * @uml.property name="key" 125 */ 66 126 public String getKey() { 67 127 return key; 68 128 } 69 129 130 /** 131 * @return 132 * @uml.property name="keyValue" 133 */ 70 134 public String getKeyValue() { 71 135 return keyValue; 72 136 } 73 137 138 /** 139 * @param keyValue 140 * @uml.property name="keyValue" 141 */ 74 142 public void setKeyValue(String keyValue) { 75 143 this.keyValue = keyValue; 76 144 } 77 145 146 /** 147 * @param inputText 148 * @uml.property name="inputText" 149 */ 78 150 public void setInputText(String inputText) { 79 151 this.inputText = inputText; 80 152 } 81 153 154 /** 155 * @return 156 * @uml.property name="inputText" 157 */ 82 158 public String getInputText() { 83 159 return inputText; 84 160 } 85 161 162 /** 163 * @param selectOneMenu 164 * @uml.property name="selectOneMenu" 165 */ 86 166 public void setSelectOneMenu(String selectOneMenu) { 87 167 this.selectOneMenu = selectOneMenu; 88 168 } 89 169 170 /** 171 * @return 172 * @uml.property name="selectOneMenu" 173 */ 90 174 public String getSelectOneMenu() { 91 175 return selectOneMenu; 92 176 } 93 177 94 //TODO: RendererFlag überarbeiten 178 95 179 public void setRendererFlag(String r){ 96 180 if (r.equals("inputText")) { … … 104 188 this.radioGroup = null; 105 189 //KeyValuesList erzeugen 106 keyValueList = new SelectItem[3];107 keyValueList[0] = new SelectItem("keyBernd","valueBernd");108 keyValueList[1] = new SelectItem("keyHorst","valueHorst");109 keyValueList[2] = new SelectItem("keyPeter","valuePeter");110 190 /*keyValueList = new SelectItem[3]; 191 * keyValueList[0] = new SelectItem("keyBernd","valueBernd"); 192 * keyValueList[1] = new SelectItem("keyHorst","valueHorst"); 193 * keyValueList[2] = new SelectItem("keyPeter","valuePeter"); 194 */ 111 195 112 196 } … … 118 202 } 119 203 204 /** 205 * @return 206 * @uml.property name="keyValueList" 207 */ 120 208 public SelectItem[] getKeyValueList() { 121 209 return keyValueList; 122 210 } 123 211 212 /** 213 * @param keyValueList 214 * @uml.property name="keyValueList" 215 */ 124 216 public void setKeyValueList(SelectItem[] keyValueList) { 125 217 this.keyValueList = keyValueList; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/CatalogItem.java
r844 r858 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 3 public class CatalogItem extends ItemType implements UserObjectItem{ 3 4 5 /** 6 * @uml.property name="name" 7 */ 4 8 private String name; 9 /** 10 * @uml.property name="password" 11 */ 5 12 private String password; 6 private String dbName; 13 /** 14 * @uml.property name="dbname" 15 */ 16 private String dbname; 17 /** 18 * @uml.property name="user" 19 */ 7 20 private String user; 8 private String dbSocket; 9 private String dbAddress; 10 private String dbPort; 21 /** 22 * @uml.property name="dbsocket" 23 */ 24 private String dbsocket; 25 /** 26 * @uml.property name="dbaddress" 27 */ 28 private String dbaddress; 29 /** 30 * @uml.property name="dbport" 31 */ 32 private String dbport; 33 /** 34 * @uml.property name="description" 35 */ 36 private String description; 37 /** 38 * @uml.property name="address" 39 */ 40 private String address; 41 /** 42 * @uml.property name="dbpassword" 43 */ 44 private String dbpassword; 45 /** 46 * @uml.property name="dbuser" 47 */ 48 private String dbuser; 49 /** 50 * @uml.property name="dbdriver" 51 */ 52 private String dbdriver; 53 /** 54 * @uml.property name="multipleconnections" 55 */ 56 private String multipleconnections; 57 11 58 12 59 public CatalogItem(){} 13 60 public CatalogItem(String name, String dbname, String user, String password){ 14 61 setName(name); 15 setDb Name(dbname);62 setDbname(dbname); 16 63 setUser(user); 17 64 setPassword(password); 18 65 } 66 /** 67 * @return 68 * @uml.property name="name" 69 */ 19 70 public String getName() { 20 71 return name; 21 72 } 73 /** 74 * @param name 75 * @uml.property name="name" 76 */ 22 77 public void setName(String name) { 23 78 this.name = name; 24 79 } 80 /** 81 * @return 82 * @uml.property name="password" 83 */ 25 84 public String getPassword() { 26 85 return password; 27 86 } 87 /** 88 * @param password 89 * @uml.property name="password" 90 */ 28 91 public void setPassword(String password) { 29 92 this.password = password; 30 93 } 31 public String getDbName() { 32 return dbName; 33 } 34 public void setDbName(String dbName) { 35 this.dbName = dbName; 36 } 94 /** 95 * @return 96 * @uml.property name="dbname" 97 */ 98 public String getDbname() { 99 return dbname; 100 } 101 /** 102 * @param dbname 103 * @uml.property name="dbname" 104 */ 105 public void setDbname(String dbname) { 106 this.dbname = dbname; 107 } 108 /** 109 * @return 110 * @uml.property name="user" 111 */ 37 112 public String getUser() { 38 113 return user; 39 114 } 115 /** 116 * @param user 117 * @uml.property name="user" 118 */ 40 119 public void setUser(String user) { 41 120 this.user = user; 42 121 } 43 public String getDbSocket() { 44 return dbSocket; 45 } 46 public void setDbSocket(String dbSocket) { 47 this.dbSocket = dbSocket; 48 } 49 public String getDbAddress() { 50 return dbAddress; 51 } 52 public void setDbAddress(String dbAddress) { 53 this.dbAddress = dbAddress; 54 } 55 public String getDbPort() { 56 return dbPort; 57 } 58 public void setDbPort(String dbPort) { 59 this.dbPort = dbPort; 60 } 122 /** 123 * @return 124 * @uml.property name="dbsocket" 125 */ 126 public String getDbsocket() { 127 return dbsocket; 128 } 129 /** 130 * @param dbsocket 131 * @uml.property name="dbsocket" 132 */ 133 public void setDbsocket(String dbsocket) { 134 this.dbsocket = dbsocket; 135 } 136 /** 137 * @return 138 * @uml.property name="dbaddress" 139 */ 140 public String getDbaddress() { 141 return dbaddress; 142 } 143 public void setDbAddress(String dbaddress) { 144 this.dbaddress = dbaddress; 145 } 146 /** 147 * @return 148 * @uml.property name="dbport" 149 */ 150 public String getDbport() { 151 return dbport; 152 } 153 /** 154 * @param dbport 155 * @uml.property name="dbport" 156 */ 157 public void setDbport(String dbport) { 158 this.dbport = dbport; 159 } 160 /** 161 * @return 162 * @uml.property name="description" 163 */ 164 public String getDescription() { 165 return description; 166 } 167 /** 168 * @param description 169 * @uml.property name="description" 170 */ 171 public void setDescription(String description) { 172 this.description = description; 173 } 174 /** 175 * @return 176 * @uml.property name="address" 177 */ 178 public String getAddress() { 179 return address; 180 } 181 /** 182 * @param address 183 * @uml.property name="address" 184 */ 185 public void setAddress(String address) { 186 this.address = address; 187 } 188 /** 189 * @return 190 * @uml.property name="dbpassword" 191 */ 192 public String getDbpassword() { 193 return dbpassword; 194 } 195 /** 196 * @param dbpassword 197 * @uml.property name="dbpassword" 198 */ 199 public void setDbpassword(String dbpassword) { 200 this.dbpassword = dbpassword; 201 } 202 /** 203 * @return 204 * @uml.property name="dbuser" 205 */ 206 public String getDbuser() { 207 return dbuser; 208 } 209 /** 210 * @param dbuser 211 * @uml.property name="dbuser" 212 */ 213 public void setDbuser(String dbuser) { 214 this.dbuser = dbuser; 215 } 216 /** 217 * @return 218 * @uml.property name="dbdriver" 219 */ 220 public String getDbdriver() { 221 return dbdriver; 222 } 223 /** 224 * @param dbdriver 225 * @uml.property name="dbdriver" 226 */ 227 public void setDbdriver(String dbdriver) { 228 this.dbdriver = dbdriver; 229 } 230 /** 231 * @return 232 * @uml.property name="multipleconnections" 233 */ 234 public String getMultipleconnections() { 235 return multipleconnections; 236 } 237 /** 238 * @param multipleconnections 239 * @uml.property name="multipleconnections" 240 */ 241 public void setMultipleconnections(String multipleconnections) { 242 this.multipleconnections = multipleconnections; 243 } 244 /** 245 * @param dbaddress 246 * @uml.property name="dbaddress" 247 */ 248 public void setDbaddress(String dbaddress) { 249 this.dbaddress = dbaddress; 250 } 251 61 252 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ClientItem.java
r847 r858 2 2 public class ClientItem extends ItemType implements UserObjectItem{ 3 3 4 /** 5 * @uml.property name="name" 6 */ 4 7 private String name; 8 /** 9 * @uml.property name="address" 10 */ 5 11 private String address; 6 private String FDPort; 12 /** 13 * @uml.property name="fdport" 14 */ 15 private String fdport; 16 /** 17 * @uml.property name="catalog" 18 */ 7 19 private String catalog; 20 /** 21 * @uml.property name="password" 22 */ 8 23 private String password; 9 private String fileRetention; 10 private String jobRetention; 11 private String autoPrune; 12 private String maximumConcurrentJobs; 24 /** 25 * @uml.property name="fileretention" 26 */ 27 private String fileretention; 28 /** 29 * @uml.property name="jobretention" 30 */ 31 private String jobretention; 32 /** 33 * @uml.property name="autoprune" 34 */ 35 private String autoprune; 36 /** 37 * @uml.property name="maximumconcurrentjobs" 38 */ 39 private String maximumconcurrentjobs; 40 /** 41 * @uml.property name="priority" 42 */ 13 43 private String priority; 14 44 15 45 public ClientItem() {} 16 46 47 /** 48 * @return 49 * @uml.property name="name" 50 */ 17 51 public String getName() { 18 52 return name; 19 53 } 20 54 55 /** 56 * @param name 57 * @uml.property name="name" 58 */ 21 59 public void setName(String name) { 22 60 this.name = name; 23 61 } 24 62 63 /** 64 * @return 65 * @uml.property name="address" 66 */ 25 67 public String getAddress() { 26 68 return address; 27 69 } 28 70 71 /** 72 * @param address 73 * @uml.property name="address" 74 */ 29 75 public void setAddress(String address) { 30 76 this.address = address; 31 77 } 32 78 33 public String getFDPort() { 34 return FDPort; 35 } 36 37 public void setFDPort(String fdPort) { 38 this.FDPort = fdPort; 39 } 40 79 80 /** 81 * @return 82 * @uml.property name="catalog" 83 */ 41 84 public String getCatalog() { 42 85 return catalog; 43 86 } 44 87 88 /** 89 * @param catalog 90 * @uml.property name="catalog" 91 */ 45 92 public void setCatalog(String catalog) { 46 93 this.catalog = catalog; 47 94 } 48 95 96 /** 97 * @return 98 * @uml.property name="password" 99 */ 49 100 public String getPassword() { 50 101 return password; 51 102 } 52 103 104 /** 105 * @param password 106 * @uml.property name="password" 107 */ 53 108 public void setPassword(String password) { 54 109 this.password = password; 55 110 } 56 111 57 public String getFileRetention() { 58 return fileRetention; 59 } 60 61 public void setFileRetention(String fileRetention) { 62 this.fileRetention = fileRetention; 63 } 64 65 public String getJobRetention() { 66 return jobRetention; 67 } 68 69 public void setJobRetention(String jobRetention) { 70 this.jobRetention = jobRetention; 71 } 72 73 public String getAutoPrune() { 74 return autoPrune; 75 } 76 77 public void setAutoPrune(String autoPrune) { 78 this.autoPrune = autoPrune; 79 } 80 81 public String getMaximumConcurrentJobs() { 82 return maximumConcurrentJobs; 83 } 84 85 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 86 this.maximumConcurrentJobs = maximumConcurrentJobs; 87 } 88 112 /** 113 * @return 114 * @uml.property name="priority" 115 */ 89 116 public String getPriority() { 90 117 return priority; 91 118 } 92 119 120 /** 121 * @param priority 122 * @uml.property name="priority" 123 */ 93 124 public void setPriority(String priority) { 94 125 this.priority = priority; 95 126 } 96 127 128 /** 129 * @param fdport 130 * @uml.property name="fdport" 131 */ 132 public void setFdport(String fdport) { 133 this.fdport = fdport; 134 } 135 136 /** 137 * @return 138 * @uml.property name="fdport" 139 */ 140 public String getFdport() { 141 return fdport; 142 } 143 144 /** 145 * @param fileretention 146 * @uml.property name="fileretention" 147 */ 148 public void setFileretention(String fileretention) { 149 this.fileretention = fileretention; 150 } 151 152 /** 153 * @return 154 * @uml.property name="fileretention" 155 */ 156 public String getFileretention() { 157 return fileretention; 158 } 159 160 /** 161 * @param jobretention 162 * @uml.property name="jobretention" 163 */ 164 public void setJobretention(String jobretention) { 165 this.jobretention = jobretention; 166 } 167 168 /** 169 * @return 170 * @uml.property name="jobretention" 171 */ 172 public String getJobretention() { 173 return jobretention; 174 } 175 176 /** 177 * @param autoprune 178 * @uml.property name="autoprune" 179 */ 180 public void setAutoprune(String autoprune) { 181 this.autoprune = autoprune; 182 } 183 184 /** 185 * @return 186 * @uml.property name="autoprune" 187 */ 188 public String getAutoprune() { 189 return autoprune; 190 } 191 192 /** 193 * @param maximumconcurrentjobs 194 * @uml.property name="maximumconcurrentjobs" 195 */ 196 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 197 this.maximumconcurrentjobs = maximumconcurrentjobs; 198 } 199 200 /** 201 * @return 202 * @uml.property name="maximumconcurrentjobs" 203 */ 204 public String getMaximumconcurrentjobs() { 205 return maximumconcurrentjobs; 206 } 207 97 208 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConfigItem.java
r844 r858 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 */ 3 6 private int id; 7 /** 8 * @uml.property name="ressource" 9 */ 4 10 private String ressource; 11 /** 12 * @uml.property name="key" 13 */ 5 14 private String key; 15 /** 16 * @uml.property name="value" 17 */ 6 18 private String value; 7 19 … … 16 28 } 17 29 30 /** 31 * @param value 32 * @uml.property name="value" 33 */ 18 34 public void setValue(String value) { 19 35 this.value = value; 20 36 } 21 37 38 /** 39 * @return 40 * @uml.property name="value" 41 */ 22 42 public String getValue() { 23 43 return value; 24 44 } 25 45 46 /** 47 * @param key 48 * @uml.property name="key" 49 */ 26 50 public void setKey(String key) { 27 51 this.key = key; 28 52 } 29 53 54 /** 55 * @return 56 * @uml.property name="key" 57 */ 30 58 public String getKey() { 31 59 return key; 32 60 } 33 61 62 /** 63 * @param ressource 64 * @uml.property name="ressource" 65 */ 34 66 public void setRessource(String ressource) { 35 67 this.ressource = ressource; 36 68 } 37 69 70 /** 71 * @return 72 * @uml.property name="ressource" 73 */ 38 74 public String getRessource() { 39 75 return ressource; … … 44 80 } 45 81 82 /** 83 * @param id 84 * @uml.property name="id" 85 */ 46 86 public void setId(int id) { 47 87 this.id = id; 48 88 } 49 89 90 /** 91 * @return 92 * @uml.property name="id" 93 */ 50 94 public int getId() { 51 95 return id; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConsoleItem.java
r844 r858 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 */ 3 6 private String name; 7 /** 8 * @uml.property name="password" 9 */ 4 10 private String password; 5 private String jobACL; 6 private String clientACL; 7 private String storageACL; 8 private String scheduleACL; 9 private String poolACL; 10 private String fileSetACL; 11 private String catalogACL; 12 private String commandACL; 13 private String whereACL; 11 /** 12 * @uml.property name="jobacl" 13 */ 14 private String jobacl; 15 /** 16 * @uml.property name="clientacl" 17 */ 18 private String clientacl; 19 /** 20 * @uml.property name="storageacl" 21 */ 22 private String storageacl; 23 /** 24 * @uml.property name="scheduleacl" 25 */ 26 private String scheduleacl; 27 /** 28 * @uml.property name="poolacl" 29 */ 30 private String poolacl; 31 /** 32 * @uml.property name="fileSetacl" 33 */ 34 private String fileSetacl; 35 /** 36 * @uml.property name="catalogacl" 37 */ 38 private String catalogacl; 39 /** 40 * @uml.property name="commandacl" 41 */ 42 private String commandacl; 43 /** 44 * @uml.property name="whereacl" 45 */ 46 private String whereacl; 14 47 15 48 public ConsoleItem(){} … … 20 53 } 21 54 55 /** 56 * @return 57 * @uml.property name="name" 58 */ 22 59 public String getName() { 23 60 return name; 24 61 } 25 62 63 /** 64 * @param name 65 * @uml.property name="name" 66 */ 26 67 public void setName(String name) { 27 68 this.name = name; 28 69 } 29 70 71 /** 72 * @return 73 * @uml.property name="password" 74 */ 30 75 public String getPassword() { 31 76 return password; 32 77 } 33 78 79 /** 80 * @param password 81 * @uml.property name="password" 82 */ 34 83 public void setPassword(String password) { 35 84 this.password = password; 36 85 } 37 86 38 public String getJobACL() { 39 return jobACL; 40 } 41 42 public void setJobACL(String jobACL) { 43 this.jobACL = jobACL; 44 } 45 46 public String getClientACL() { 47 return clientACL; 48 } 49 50 public void setClientACL(String clientACL) { 51 this.clientACL = clientACL; 52 } 53 54 public String getStorageACL() { 55 return storageACL; 56 } 57 58 public void setStorageACL(String storageACL) { 59 this.storageACL = storageACL; 60 } 61 62 public String getScheduleACL() { 63 return scheduleACL; 64 } 65 66 public void setScheduleACL(String scheduleACL) { 67 this.scheduleACL = scheduleACL; 68 } 69 70 public String getPoolACL() { 71 return poolACL; 72 } 73 74 public void setPoolACL(String poolACL) { 75 this.poolACL = poolACL; 76 } 77 78 public String getFileSetACL() { 79 return fileSetACL; 80 } 81 82 public void setFileSetACL(String fileSetACL) { 83 this.fileSetACL = fileSetACL; 84 } 85 86 public String getCatalogACL() { 87 return catalogACL; 88 } 89 90 public void setCatalogACL(String catalogACL) { 91 this.catalogACL = catalogACL; 92 } 93 94 public String getCommandACL() { 95 return commandACL; 96 } 97 98 public void setCommandACL(String commandACL) { 99 this.commandACL = commandACL; 100 } 101 102 public String getWhereACL() { 103 return whereACL; 104 } 105 106 public void setWhereACL(String whereACL) { 107 this.whereACL = whereACL; 108 } 87 /** 88 * @return 89 * @uml.property name="jobacl" 90 */ 91 public String getJobacl() { 92 return jobacl; 93 } 94 95 /** 96 * @param jobacl 97 * @uml.property name="jobacl" 98 */ 99 public void setJobacl(String jobacl) { 100 this.jobacl = jobacl; 101 } 102 103 /** 104 * @return 105 * @uml.property name="clientacl" 106 */ 107 public String getClientacl() { 108 return clientacl; 109 } 110 111 /** 112 * @param clientacl 113 * @uml.property name="clientacl" 114 */ 115 public void setClientacl(String clientacl) { 116 this.clientacl = clientacl; 117 } 118 119 /** 120 * @return 121 * @uml.property name="storageacl" 122 */ 123 public String getStorageacl() { 124 return storageacl; 125 } 126 127 /** 128 * @param storageacl 129 * @uml.property name="storageacl" 130 */ 131 public void setStorageacl(String storageacl) { 132 this.storageacl = storageacl; 133 } 134 135 /** 136 * @return 137 * @uml.property name="scheduleacl" 138 */ 139 public String getScheduleacl() { 140 return scheduleacl; 141 } 142 143 /** 144 * @param scheduleacl 145 * @uml.property name="scheduleacl" 146 */ 147 public void setScheduleacl(String scheduleacl) { 148 this.scheduleacl = scheduleacl; 149 } 150 151 /** 152 * @return 153 * @uml.property name="poolacl" 154 */ 155 public String getPoolacl() { 156 return poolacl; 157 } 158 159 /** 160 * @param poolacl 161 * @uml.property name="poolacl" 162 */ 163 public void setPoolacl(String poolacl) { 164 this.poolacl = poolacl; 165 } 166 167 /** 168 * @return 169 * @uml.property name="fileSetacl" 170 */ 171 public String getFileSetacl() { 172 return fileSetacl; 173 } 174 175 /** 176 * @param fileSetacl 177 * @uml.property name="fileSetacl" 178 */ 179 public void setFileSetacl(String fileSetacl) { 180 this.fileSetacl = fileSetacl; 181 } 182 183 /** 184 * @return 185 * @uml.property name="catalogacl" 186 */ 187 public String getCatalogacl() { 188 return catalogacl; 189 } 190 191 /** 192 * @param catalogacl 193 * @uml.property name="catalogacl" 194 */ 195 public void setCatalogacl(String catalogacl) { 196 this.catalogacl = catalogacl; 197 } 198 199 /** 200 * @return 201 * @uml.property name="commandacl" 202 */ 203 public String getCommandacl() { 204 return commandacl; 205 } 206 207 /** 208 * @param commandacl 209 * @uml.property name="commandacl" 210 */ 211 public void setCommandacl(String commandacl) { 212 this.commandacl = commandacl; 213 } 214 215 /** 216 * @return 217 * @uml.property name="whereacl" 218 */ 219 public String getWhereacl() { 220 return whereacl; 221 } 222 223 /** 224 * @param whereacl 225 * @uml.property name="whereacl" 226 */ 227 public void setWhereacl(String whereacl) { 228 this.whereacl = whereacl; 229 } 230 109 231 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/CounterItem.java
r844 r858 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 */ 3 6 private String name; 7 /** 8 * @uml.property name="minimum" 9 */ 4 10 private String minimum; 11 /** 12 * @uml.property name="maximum" 13 */ 5 14 private String maximum; 6 private String wrapCounter; 15 /** 16 * @uml.property name="wrapcounter" 17 */ 18 private String wrapcounter; 19 /** 20 * @uml.property name="catalog" 21 */ 7 22 private String catalog; 8 23 … … 12 27 } 13 28 29 /** 30 * @return 31 * @uml.property name="name" 32 */ 14 33 public String getName() { 15 34 return name; 16 35 } 36 /** 37 * @param name 38 * @uml.property name="name" 39 */ 17 40 public void setName(String name) { 18 41 this.name = name; 19 42 } 43 /** 44 * @return 45 * @uml.property name="minimum" 46 */ 20 47 public String getMinimum() { 21 48 return minimum; 22 49 } 50 /** 51 * @param minimum 52 * @uml.property name="minimum" 53 */ 23 54 public void setMinimum(String minimum) { 24 55 this.minimum = minimum; 25 56 } 57 /** 58 * @return 59 * @uml.property name="maximum" 60 */ 26 61 public String getMaximum() { 27 62 return maximum; 28 63 } 64 /** 65 * @param maximum 66 * @uml.property name="maximum" 67 */ 29 68 public void setMaximum(String maximum) { 30 69 this.maximum = maximum; 31 70 } 32 public String getWrapCounter() { 33 return wrapCounter; 71 /** 72 * @return 73 * @uml.property name="wrapcounter" 74 */ 75 public String getWrapcounter() { 76 return wrapcounter; 34 77 } 35 public void setWrapCounter(String wrapCounter) { 36 this.wrapCounter = wrapCounter; 78 /** 79 * @param wrapcounter 80 * @uml.property name="wrapcounter" 81 */ 82 public void setWrapcounter(String wrapcounter) { 83 this.wrapcounter = wrapcounter; 37 84 } 85 /** 86 * @return 87 * @uml.property name="catalog" 88 */ 38 89 public String getCatalog() { 39 90 return catalog; 40 91 } 92 /** 93 * @param catalog 94 * @uml.property name="catalog" 95 */ 41 96 public void setCatalog(String catalog) { 42 97 this.catalog = catalog; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/DirectorItem.java
r848 r858 2 2 3 3 public class DirectorItem extends ItemType implements UserObjectItem{ 4 private String name; 5 private String description; 6 private String password; 7 private String messages; 8 private String workingDirectory; 9 private String pidDirectory; 10 private String scriptsDirectory; 11 private String queryFile; 12 private String heartbeatInterval; 13 private String maximumConcurrentJobs; 14 private String fdConnectTimeout; 15 private String sdConnectTimeout; 16 private String dirAddresses; 17 private String dirPort; 18 private String dirAddress; 19 private String dirSourceAddress; 20 private String statisticsRetention; 21 private String verId; 22 private String maxConsoleConnections; 4 /** 5 * @uml.property name="name" 6 */ 7 private String name; 8 /** 9 * @uml.property name="description" 10 */ 11 private String description; 12 /** 13 * @uml.property name="password" 14 */ 15 private String password; 16 /** 17 * @uml.property name="messages" 18 */ 19 private String messages; 20 /** 21 * @uml.property name="workingdirectory" 22 */ 23 private String workingdirectory; 24 /** 25 * @uml.property name="piddirectory" 26 */ 27 private String piddirectory; 28 /** 29 * @uml.property name="scriptsdirectory" 30 */ 31 private String scriptsdirectory; 32 /** 33 * @uml.property name="queryfile" 34 */ 35 private String queryfile; 36 /** 37 * @uml.property name="heartbeatinterval" 38 */ 39 private String heartbeatinterval; 40 /** 41 * @uml.property name="maximumconcurrentjobs" 42 */ 43 private String maximumconcurrentjobs; 44 /** 45 * @uml.property name="fdconnecttimeout" 46 */ 47 private String fdconnecttimeout; 48 /** 49 * @uml.property name="sdconnecttimeout" 50 */ 51 private String sdconnecttimeout; 52 /** 53 * @uml.property name="diraddresses" 54 */ 55 private String diraddresses; 56 /** 57 * @uml.property name="dirport" 58 */ 59 private String dirport; 60 /** 61 * @uml.property name="diraddress" 62 */ 63 private String diraddress; 64 /** 65 * @uml.property name="dirsourceaddress" 66 */ 67 private String dirsourceaddress; 68 /** 69 * @uml.property name="statisticsretention" 70 */ 71 private String statisticsretention; 72 /** 73 * @uml.property name="verid" 74 */ 75 private String verid; 76 /** 77 * @uml.property name="maxconsoleconnections" 78 */ 79 private String maxconsoleconnections; 23 80 24 81 public DirectorItem(){} 25 82 26 public DirectorItem(String name, String password, String messages, String working Directory,27 String pid Drectory, String queryFile){83 public DirectorItem(String name, String password, String messages, String workingdirectory, 84 String piddrectory, String queryfile){ 28 85 29 86 } 30 87 88 /** 89 * @return 90 * @uml.property name="name" 91 */ 92 public String getName() { 93 return name; 94 } 95 96 /** 97 * @param name 98 * @uml.property name="name" 99 */ 31 100 public void setName(String name) { 32 101 this.name = name; 33 102 } 34 103 35 public String getName() { 36 return name; 37 } 104 /** 105 * @return 106 * @uml.property name="description" 107 */ 38 108 public String getDescription() { 39 return description; 40 } 41 109 return description; 110 } 111 112 /** 113 * @param description 114 * @uml.property name="description" 115 */ 42 116 public void setDescription(String description) { 43 this.description = description; 44 } 45 46 public String getPassword() { 47 return password; 48 } 49 50 public void setPassword(String password) { 51 this.password = password; 52 } 53 54 public String getMessages() { 55 return messages; 56 } 57 58 public void setMessages(String messages) { 59 this.messages = messages; 60 } 61 62 public String getWorkingDirectory() { 63 return workingDirectory; 64 } 65 66 public void setWorkingDirectory(String workingDirectory) { 67 this.workingDirectory = workingDirectory; 68 } 69 70 public String getPidDirectory() { 71 return pidDirectory; 72 } 73 74 public void setPidDirectory(String pidDirectory) { 75 this.pidDirectory = pidDirectory; 76 } 77 78 public String getScriptsDirectory() { 79 return scriptsDirectory; 80 } 81 82 public void setScriptsDirectory(String scriptsDirectory) { 83 this.scriptsDirectory = scriptsDirectory; 84 } 85 86 public String getQueryFile() { 87 return queryFile; 88 } 89 90 public void setQueryFile(String queryFile) { 91 this.queryFile = queryFile; 92 } 93 94 public String getHeartbeatInterval() { 95 return heartbeatInterval; 96 } 97 98 public void setHeartbeatInterval(String heartbeatInterval) { 99 this.heartbeatInterval = heartbeatInterval; 100 } 101 102 public String getMaximumConcurrentJobs() { 103 return maximumConcurrentJobs; 104 } 105 106 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 107 this.maximumConcurrentJobs = maximumConcurrentJobs; 108 } 109 110 public String getFdConnectTimeout() { 111 return fdConnectTimeout; 112 } 113 114 public void setFdConnectTimeout(String fdConnectTimeout) { 115 this.fdConnectTimeout = fdConnectTimeout; 116 } 117 118 public String getSdConnectTimeout() { 119 return sdConnectTimeout; 120 } 121 122 public void setSdConnectTimeout(String sdConnectTimeout) { 123 this.sdConnectTimeout = sdConnectTimeout; 124 } 125 126 public String getDirAddresses() { 127 return dirAddresses; 128 } 129 130 public void setDirAddresses(String dirAddresses) { 131 this.dirAddresses = dirAddresses; 132 } 133 134 public String getDirPort() { 135 return dirPort; 136 } 137 138 public void setDirPort(String dirPort) { 139 this.dirPort = dirPort; 140 } 141 142 public String getDirAddress() { 143 return dirAddress; 144 } 145 146 public void setDirAddress(String dirAddress) { 147 this.dirAddress = dirAddress; 148 } 149 150 public String getDirSourceAddress() { 151 return dirSourceAddress; 152 } 153 154 public void setDirSourceAddress(String dirSourceAddress) { 155 this.dirSourceAddress = dirSourceAddress; 156 } 157 158 public String getStatisticsRetention() { 159 return statisticsRetention; 160 } 161 162 public void setStatisticsRetention(String statisticsRetention) { 163 this.statisticsRetention = statisticsRetention; 164 } 165 166 public String getVerId() { 167 return verId; 168 } 169 170 public void setVerId(String verId) { 171 this.verId = verId; 172 } 173 174 public String getMaxConsoleConnections() { 175 return maxConsoleConnections; 176 } 177 178 public void setMaxConsoleConnections(String maxConsoleConnections) { 179 this.maxConsoleConnections = maxConsoleConnections; 180 } 117 this.description = description; 118 } 119 120 /** 121 * @return 122 * @uml.property name="password" 123 */ 124 public String getPassword() { 125 return password; 126 } 127 128 /** 129 * @param password 130 * @uml.property name="password" 131 */ 132 public void setPassword(String password) { 133 this.password = password; 134 } 135 136 /** 137 * @return 138 * @uml.property name="messages" 139 */ 140 public String getMessages() { 141 return messages; 142 } 143 144 /** 145 * @param messages 146 * @uml.property name="messages" 147 */ 148 public void setMessages(String messages) { 149 this.messages = messages; 150 } 151 152 /** 153 * @return 154 * @uml.property name="workingdirectory" 155 */ 156 public String getWorkingdirectory() { 157 return workingdirectory; 158 } 159 160 /** 161 * @param workingdirectory 162 * @uml.property name="workingdirectory" 163 */ 164 public void setWorkingdirectory(String workingdirectory) { 165 this.workingdirectory = workingdirectory; 166 } 167 168 /** 169 * @return 170 * @uml.property name="piddirectory" 171 */ 172 public String getPiddirectory() { 173 return piddirectory; 174 } 175 176 /** 177 * @param piddirectory 178 * @uml.property name="piddirectory" 179 */ 180 public void setPiddirectory(String piddirectory) { 181 this.piddirectory = piddirectory; 182 } 183 184 /** 185 * @return 186 * @uml.property name="scriptsdirectory" 187 */ 188 public String getScriptsdirectory() { 189 return scriptsdirectory; 190 } 191 192 /** 193 * @param scriptsdirectory 194 * @uml.property name="scriptsdirectory" 195 */ 196 public void setScriptsdirectory(String scriptsdirectory) { 197 this.scriptsdirectory = scriptsdirectory; 198 } 199 200 /** 201 * @return 202 * @uml.property name="queryfile" 203 */ 204 public String getQueryfile() { 205 return queryfile; 206 } 207 208 /** 209 * @param queryfile 210 * @uml.property name="queryfile" 211 */ 212 public void setQueryfile(String queryfile) { 213 this.queryfile = queryfile; 214 } 215 216 /** 217 * @return 218 * @uml.property name="heartbeatinterval" 219 */ 220 public String getHeartbeatinterval() { 221 return heartbeatinterval; 222 } 223 224 /** 225 * @param heartbeatinterval 226 * @uml.property name="heartbeatinterval" 227 */ 228 public void setHeartbeatinterval(String heartbeatinterval) { 229 this.heartbeatinterval = heartbeatinterval; 230 } 231 232 /** 233 * @return 234 * @uml.property name="maximumconcurrentjobs" 235 */ 236 public String getMaximumconcurrentjobs() { 237 return maximumconcurrentjobs; 238 } 239 240 /** 241 * @param maximumconcurrentjobs 242 * @uml.property name="maximumconcurrentjobs" 243 */ 244 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 245 this.maximumconcurrentjobs = maximumconcurrentjobs; 246 } 247 248 /** 249 * @return 250 * @uml.property name="fdconnecttimeout" 251 */ 252 public String getFdconnecttimeout() { 253 return fdconnecttimeout; 254 } 255 256 /** 257 * @param fdconnecttimeout 258 * @uml.property name="fdconnecttimeout" 259 */ 260 public void setFdconnecttimeout(String fdconnecttimeout) { 261 this.fdconnecttimeout = fdconnecttimeout; 262 } 263 264 /** 265 * @return 266 * @uml.property name="sdconnecttimeout" 267 */ 268 public String getSdconnecttimeout() { 269 return sdconnecttimeout; 270 } 271 272 /** 273 * @param sdconnecttimeout 274 * @uml.property name="sdconnecttimeout" 275 */ 276 public void setSdconnecttimeout(String sdconnecttimeout) { 277 this.sdconnecttimeout = sdconnecttimeout; 278 } 279 280 /** 281 * @return 282 * @uml.property name="diraddresses" 283 */ 284 public String getDiraddresses() { 285 return diraddresses; 286 } 287 288 /** 289 * @param diraddresses 290 * @uml.property name="diraddresses" 291 */ 292 public void setDiraddresses(String diraddresses) { 293 this.diraddresses = diraddresses; 294 } 295 296 /** 297 * @return 298 * @uml.property name="dirport" 299 */ 300 public String getDirport() { 301 return dirport; 302 } 303 304 /** 305 * @param dirport 306 * @uml.property name="dirport" 307 */ 308 public void setDirport(String dirport) { 309 this.dirport = dirport; 310 } 311 312 /** 313 * @return 314 * @uml.property name="diraddress" 315 */ 316 public String getDiraddress() { 317 return diraddress; 318 } 319 320 /** 321 * @param diraddress 322 * @uml.property name="diraddress" 323 */ 324 public void setDiraddress(String diraddress) { 325 this.diraddress = diraddress; 326 } 327 328 /** 329 * @return 330 * @uml.property name="dirsourceaddress" 331 */ 332 public String getDirsourceaddress() { 333 return dirsourceaddress; 334 } 335 336 /** 337 * @param dirsourceaddress 338 * @uml.property name="dirsourceaddress" 339 */ 340 public void setDirsourceaddress(String dirsourceaddress) { 341 this.dirsourceaddress = dirsourceaddress; 342 } 343 344 /** 345 * @return 346 * @uml.property name="statisticsretention" 347 */ 348 public String getStatisticsretention() { 349 return statisticsretention; 350 } 351 352 /** 353 * @param statisticsretention 354 * @uml.property name="statisticsretention" 355 */ 356 public void setStatisticsretention(String statisticsretention) { 357 this.statisticsretention = statisticsretention; 358 } 359 360 /** 361 * @return 362 * @uml.property name="verid" 363 */ 364 public String getVerid() { 365 return verid; 366 } 367 368 /** 369 * @param verid 370 * @uml.property name="verid" 371 */ 372 public void setVerid(String verid) { 373 this.verid = verid; 374 } 375 376 /** 377 * @return 378 * @uml.property name="maxconsoleconnections" 379 */ 380 public String getMaxconsoleconnections() { 381 return maxconsoleconnections; 382 } 383 384 /** 385 * @param maxconsoleconnections 386 * @uml.property name="maxconsoleconnections" 387 */ 388 public void setMaxconsoleconnections(String maxconsoleconnections) { 389 this.maxconsoleconnections = maxconsoleconnections; 390 } 391 181 392 182 393 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDClientItem.java
r844 r858 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 */ 3 6 private String name; 4 private String workingDirectory; 5 private String pidDirectory; 6 private String heartbeatInterval; 7 private String maximumConcurrentJobs; 8 private String fdAddresses; 9 private String fdPort; 10 private String fdAddress; 11 private String fdSourceAddress; 12 private String sdConnectTimeout; 13 private String maximumNetworkBufferSize; 7 /** 8 * @uml.property name="workingdirectory" 9 */ 10 private String workingdirectory; 11 /** 12 * @uml.property name="piddirectory" 13 */ 14 private String piddirectory; 15 /** 16 * @uml.property name="heartbeatinterval" 17 */ 18 private String heartbeatinterval; 19 /** 20 * @uml.property name="maximumconcurrentjobs" 21 */ 22 private String maximumconcurrentjobs; 23 /** 24 * @uml.property name="fdaddresses" 25 */ 26 private String fdaddresses; 27 /** 28 * @uml.property name="fdport" 29 */ 30 private String fdport; 31 /** 32 * @uml.property name="fdaddress" 33 */ 34 private String fdaddress; 35 /** 36 * @uml.property name="fdsourceaddress" 37 */ 38 private String fdsourceaddress; 39 /** 40 * @uml.property name="sdconnecttimeout" 41 */ 42 private String sdconnecttimeout; 43 /** 44 * @uml.property name="maximumnetworkbuffersize" 45 */ 46 private String maximumnetworkbuffersize; 14 47 //private String heartbeatInterval; Parameter in Dokumentation doppelt vorhanden 15 private String pkiEncryption; 16 private String pkiSignatures; 17 private String pkiKeypair; 18 private String pkiMasterKey; 48 /** 49 * @uml.property name="pkiencryption" 50 */ 51 private String pkiencryption; 52 /** 53 * @uml.property name="pkisignatures" 54 */ 55 private String pkisignatures; 56 /** 57 * @uml.property name="pkikeypair" 58 */ 59 private String pkikeypair; 60 /** 61 * @uml.property name="pkimasterkey" 62 */ 63 private String pkimasterkey; 19 64 20 65 public FDClientItem(){} 21 66 public FDClientItem(String name, String workingDirectory, String pidDirectory){ 22 67 setName(name); 23 setWorkingDirectory(workingDirectory); 24 setPidDirectory(pidDirectory); 25 } 68 setWorkingdirectory(workingdirectory); 69 setPiddirectory(piddirectory); 70 } 71 /** 72 * @return 73 * @uml.property name="name" 74 */ 26 75 public String getName() { 27 76 return name; 28 77 } 78 /** 79 * @param name 80 * @uml.property name="name" 81 */ 29 82 public void setName(String name) { 30 83 this.name = name; 31 84 } 32 public String getWorkingDirectory() { 33 return workingDirectory; 34 } 35 public void setWorkingDirectory(String workingDirectory) { 36 this.workingDirectory = workingDirectory; 37 } 38 public String getPidDirectory() { 39 return pidDirectory; 40 } 41 public void setPidDirectory(String pidDirectory) { 42 this.pidDirectory = pidDirectory; 43 } 44 public String getHeartbeatInterval() { 45 return heartbeatInterval; 46 } 47 public void setHeartbeatInterval(String heartbeatInterval) { 48 this.heartbeatInterval = heartbeatInterval; 49 } 50 public String getMaximumConcurrentJobs() { 51 return maximumConcurrentJobs; 52 } 53 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 54 this.maximumConcurrentJobs = maximumConcurrentJobs; 55 } 56 public String getFdAddresses() { 57 return fdAddresses; 58 } 59 public void setFdAddresses(String fdAddresses) { 60 this.fdAddresses = fdAddresses; 61 } 62 public String getFdPort() { 63 return fdPort; 64 } 65 public void setFdPort(String fdPort) { 66 this.fdPort = fdPort; 67 } 68 public String getFdAddress() { 69 return fdAddress; 70 } 71 public void setFdAddress(String fdAddress) { 72 this.fdAddress = fdAddress; 73 } 74 public String getFdSourceAddress() { 75 return fdSourceAddress; 76 } 77 public void setFdSourceAddress(String fdSourceAddress) { 78 this.fdSourceAddress = fdSourceAddress; 79 } 80 public String getSdConnectTimeout() { 81 return sdConnectTimeout; 82 } 83 public void setSdConnectTimeout(String sdConnectTimeout) { 84 this.sdConnectTimeout = sdConnectTimeout; 85 } 86 public String getMaximumNetworkBufferSize() { 87 return maximumNetworkBufferSize; 88 } 89 public void setMaximumNetworkBufferSize(String maximumNetworkBufferSize) { 90 this.maximumNetworkBufferSize = maximumNetworkBufferSize; 91 } 92 public String getPkiEncryption() { 93 return pkiEncryption; 94 } 95 public void setPkiEncryption(String pkiEncryption) { 96 this.pkiEncryption = pkiEncryption; 97 } 98 public String getPkiSignatures() { 99 return pkiSignatures; 100 } 101 public void setPkiSignatures(String pkiSignatures) { 102 this.pkiSignatures = pkiSignatures; 103 } 104 public String getPkiKeypair() { 105 return pkiKeypair; 106 } 107 public void setPkiKeypair(String pkiKeypair) { 108 this.pkiKeypair = pkiKeypair; 109 } 110 public String getPkiMasterKey() { 111 return pkiMasterKey; 112 } 113 public void setPkiMasterKey(String pkiMasterKey) { 114 this.pkiMasterKey = pkiMasterKey; 115 } 116 85 /** 86 * @return 87 * @uml.property name="workingdirectory" 88 */ 89 public String getWorkingdirectory() { 90 return workingdirectory; 91 } 92 /** 93 * @param workingdirectory 94 * @uml.property name="workingdirectory" 95 */ 96 public void setWorkingdirectory(String workingdirectory) { 97 this.workingdirectory = workingdirectory; 98 } 99 /** 100 * @return 101 * @uml.property name="piddirectory" 102 */ 103 public String getPiddirectory() { 104 return piddirectory; 105 } 106 /** 107 * @param piddirectory 108 * @uml.property name="piddirectory" 109 */ 110 public void setPiddirectory(String piddirectory) { 111 this.piddirectory = piddirectory; 112 } 113 /** 114 * @return 115 * @uml.property name="heartbeatinterval" 116 */ 117 public String getHeartbeatinterval() { 118 return heartbeatinterval; 119 } 120 /** 121 * @param heartbeatinterval 122 * @uml.property name="heartbeatinterval" 123 */ 124 public void setHeartbeatinterval(String heartbeatinterval) { 125 this.heartbeatinterval = heartbeatinterval; 126 } 127 /** 128 * @return 129 * @uml.property name="maximumconcurrentjobs" 130 */ 131 public String getMaximumconcurrentjobs() { 132 return maximumconcurrentjobs; 133 } 134 /** 135 * @param maximumconcurrentjobs 136 * @uml.property name="maximumconcurrentjobs" 137 */ 138 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 139 this.maximumconcurrentjobs = maximumconcurrentjobs; 140 } 141 /** 142 * @return 143 * @uml.property name="fdaddresses" 144 */ 145 public String getFdaddresses() { 146 return fdaddresses; 147 } 148 /** 149 * @param fdaddresses 150 * @uml.property name="fdaddresses" 151 */ 152 public void setFdaddresses(String fdaddresses) { 153 this.fdaddresses = fdaddresses; 154 } 155 /** 156 * @return 157 * @uml.property name="fdport" 158 */ 159 public String getFdport() { 160 return fdport; 161 } 162 /** 163 * @param fdport 164 * @uml.property name="fdport" 165 */ 166 public void setFdport(String fdport) { 167 this.fdport = fdport; 168 } 169 /** 170 * @return 171 * @uml.property name="fdaddress" 172 */ 173 public String getFdaddress() { 174 return fdaddress; 175 } 176 /** 177 * @param fdaddress 178 * @uml.property name="fdaddress" 179 */ 180 public void setFdaddress(String fdaddress) { 181 this.fdaddress = fdaddress; 182 } 183 /** 184 * @return 185 * @uml.property name="fdsourceaddress" 186 */ 187 public String getFdsourceaddress() { 188 return fdsourceaddress; 189 } 190 /** 191 * @param fdsourceaddress 192 * @uml.property name="fdsourceaddress" 193 */ 194 public void setFdsourceaddress(String fdsourceaddress) { 195 this.fdsourceaddress = fdsourceaddress; 196 } 197 /** 198 * @return 199 * @uml.property name="sdconnecttimeout" 200 */ 201 public String getSdconnecttimeout() { 202 return sdconnecttimeout; 203 } 204 /** 205 * @param sdconnecttimeout 206 * @uml.property name="sdconnecttimeout" 207 */ 208 public void setSdconnecttimeout(String sdconnecttimeout) { 209 this.sdconnecttimeout = sdconnecttimeout; 210 } 211 /** 212 * @return 213 * @uml.property name="maximumnetworkbuffersize" 214 */ 215 public String getMaximumnetworkbuffersize() { 216 return maximumnetworkbuffersize; 217 } 218 /** 219 * @param maximumnetworkbuffersize 220 * @uml.property name="maximumnetworkbuffersize" 221 */ 222 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) { 223 this.maximumnetworkbuffersize = maximumnetworkbuffersize; 224 } 225 /** 226 * @return 227 * @uml.property name="pkiencryption" 228 */ 229 public String getPkiencryption() { 230 return pkiencryption; 231 } 232 /** 233 * @param pkiencryption 234 * @uml.property name="pkiencryption" 235 */ 236 public void setPkiencryption(String pkiencryption) { 237 this.pkiencryption = pkiencryption; 238 } 239 /** 240 * @return 241 * @uml.property name="pkisignatures" 242 */ 243 public String getPkisignatures() { 244 return pkisignatures; 245 } 246 /** 247 * @param pkisignatures 248 * @uml.property name="pkisignatures" 249 */ 250 public void setPkisignatures(String pkisignatures) { 251 this.pkisignatures = pkisignatures; 252 } 253 /** 254 * @return 255 * @uml.property name="pkikeypair" 256 */ 257 public String getPkikeypair() { 258 return pkikeypair; 259 } 260 /** 261 * @param pkikeypair 262 * @uml.property name="pkikeypair" 263 */ 264 public void setPkikeypair(String pkikeypair) { 265 this.pkikeypair = pkikeypair; 266 } 267 /** 268 * @return 269 * @uml.property name="pkimasterkey" 270 */ 271 public String getPkimasterkey() { 272 return pkimasterkey; 273 } 274 /** 275 * @param pkimasterkey 276 * @uml.property name="pkimasterkey" 277 */ 278 public void setPkimasterkey(String pkimasterkey) { 279 this.pkimasterkey = pkimasterkey; 280 } 281 117 282 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDDirectorItem.java
r844 r858 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 */ 3 6 private String name; 7 /** 8 * @uml.property name="password" 9 */ 4 10 private String password; 11 /** 12 * @uml.property name="monitor" 13 */ 5 14 private String monitor; 6 15 … … 12 21 } 13 22 23 /** 24 * @return 25 * @uml.property name="name" 26 */ 14 27 public String getName() { 15 28 return name; 16 29 } 30 /** 31 * @param name 32 * @uml.property name="name" 33 */ 17 34 public void setName(String name) { 18 35 this.name = name; 19 36 } 37 /** 38 * @return 39 * @uml.property name="password" 40 */ 20 41 public String getPassword() { 21 42 return password; 22 43 } 44 /** 45 * @param password 46 * @uml.property name="password" 47 */ 23 48 public void setPassword(String password) { 24 49 this.password = password; 25 50 } 51 /** 52 * @return 53 * @uml.property name="monitor" 54 */ 26 55 public String getMonitor() { 27 56 return monitor; 28 57 } 58 /** 59 * @param monitor 60 * @uml.property name="monitor" 61 */ 29 62 public void setMonitor(String monitor) { 30 63 this.monitor = monitor; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FileSetItem.java
r846 r858 2 2 3 3 public class FileSetItem extends ItemType implements UserObjectItem { 4 /** 5 * @uml.property name="name" 6 */ 4 7 private String name; 5 private String ignoreFileSetChanges; 6 private String enableVSS; 8 /** 9 * @uml.property name="ignorefilesetchanges" 10 */ 11 private String ignorefilesetchanges; 12 /** 13 * @uml.property name="enablevss" 14 */ 15 private String enablevss; 16 /** 17 * @uml.property name="include" 18 */ 7 19 private String include; 20 /** 21 * @uml.property name="exclude" 22 */ 8 23 private String exclude; 9 24 10 25 public FileSetItem() {} 11 26 27 /** 28 * @return 29 * @uml.property name="name" 30 */ 12 31 public String getName() { 13 32 return name; 14 33 } 15 34 35 /** 36 * @param name 37 * @uml.property name="name" 38 */ 16 39 public void setName(String name) { 17 40 this.name = name; … … 19 42 20 43 public String getIgnoreFileSetChanges() { 21 return ignore FileSetChanges;44 return ignorefilesetchanges; 22 45 } 23 46 24 47 public void setIgnoreFileSetChanges(String ignoreFileSetChanges) { 25 this.ignore FileSetChanges = ignoreFileSetChanges;48 this.ignorefilesetchanges = ignoreFileSetChanges; 26 49 } 27 50 28 public String getEnableVSS() { 29 return enableVSS; 51 /** 52 * @return 53 * @uml.property name="enablevss" 54 */ 55 public String getEnablevss() { 56 return enablevss; 30 57 } 31 58 32 public void setEnableVSS(String enableVSS) { 33 this.enableVSS = enableVSS; 59 /** 60 * @param enablevss 61 * @uml.property name="enablevss" 62 */ 63 public void setEnablevss(String enablevss) { 64 this.enablevss = enablevss; 34 65 } 35 66 67 /** 68 * @return 69 * @uml.property name="include" 70 */ 36 71 public String getInclude() { 37 72 return include; 38 73 } 39 74 75 /** 76 * @param include 77 * @uml.property name="include" 78 */ 40 79 public void setInclude(String include) { 41 80 this.include = include; 42 81 } 43 82 83 /** 84 * @return 85 * @uml.property name="exclude" 86 */ 44 87 public String getExclude() { 45 88 return exclude; 46 89 } 47 90 91 /** 92 * @param exclude 93 * @uml.property name="exclude" 94 */ 48 95 public void setExclude(String exclude) { 49 96 this.exclude = exclude; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobDefsItem.java
r846 r858 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class JobDefsItem extends ItemType implements UserObjectItem{ 3 /** 4 * @return 5 * @uml.property name="name" 6 */ 7 public String getName() { 8 return name; 9 } 10 /** 11 * @param name 12 * @uml.property name="name" 13 */ 14 public void setName(String name) { 15 this.name = name; 16 } 17 /** 18 * @return 19 * @uml.property name="enabled" 20 */ 21 public String getEnabled() { 22 return enabled; 23 } 24 /** 25 * @param enabled 26 * @uml.property name="enabled" 27 */ 28 public void setEnabled(String enabled) { 29 this.enabled = enabled; 30 } 31 /** 32 * @return 33 * @uml.property name="type" 34 */ 35 public String getType() { 36 return type; 37 } 38 /** 39 * @param type 40 * @uml.property name="type" 41 */ 42 public void setType(String type) { 43 this.type = type; 44 } 45 /** 46 * @return 47 * @uml.property name="level" 48 */ 49 public String getLevel() { 50 return level; 51 } 52 /** 53 * @param level 54 * @uml.property name="level" 55 */ 56 public void setLevel(String level) { 57 this.level = level; 58 } 59 /** 60 * @return 61 * @uml.property name="accurate" 62 */ 63 public String getAccurate() { 64 return accurate; 65 } 66 /** 67 * @param accurate 68 * @uml.property name="accurate" 69 */ 70 public void setAccurate(String accurate) { 71 this.accurate = accurate; 72 } 73 /** 74 * @return 75 * @uml.property name="verifyjob" 76 */ 77 public String getVerifyjob() { 78 return verifyjob; 79 } 80 /** 81 * @param verifyjob 82 * @uml.property name="verifyjob" 83 */ 84 public void setVerifyjob(String verifyjob) { 85 this.verifyjob = verifyjob; 86 } 87 /** 88 * @return 89 * @uml.property name="jobdefs" 90 */ 91 public String getJobdefs() { 92 return jobdefs; 93 } 94 /** 95 * @param jobdefs 96 * @uml.property name="jobdefs" 97 */ 98 public void setJobdefs(String jobdefs) { 99 this.jobdefs = jobdefs; 100 } 101 /** 102 * @return 103 * @uml.property name="bootstrap" 104 */ 105 public String getBootstrap() { 106 return bootstrap; 107 } 108 /** 109 * @param bootstrap 110 * @uml.property name="bootstrap" 111 */ 112 public void setBootstrap(String bootstrap) { 113 this.bootstrap = bootstrap; 114 } 115 /** 116 * @return 117 * @uml.property name="writebootstrap" 118 */ 119 public String getWritebootstrap() { 120 return writebootstrap; 121 } 122 /** 123 * @param writebootstrap 124 * @uml.property name="writebootstrap" 125 */ 126 public void setWritebootstrap(String writebootstrap) { 127 this.writebootstrap = writebootstrap; 128 } 129 /** 130 * @return 131 * @uml.property name="client" 132 */ 133 public String getClient() { 134 return client; 135 } 136 /** 137 * @param client 138 * @uml.property name="client" 139 */ 140 public void setClient(String client) { 141 this.client = client; 142 } 143 /** 144 * @return 145 * @uml.property name="fileset" 146 */ 147 public String getFileset() { 148 return fileset; 149 } 150 /** 151 * @param fileset 152 * @uml.property name="fileset" 153 */ 154 public void setFileset(String fileset) { 155 this.fileset = fileset; 156 } 157 /** 158 * @return 159 * @uml.property name="messages" 160 */ 161 public String getMessages() { 162 return messages; 163 } 164 /** 165 * @param messages 166 * @uml.property name="messages" 167 */ 168 public void setMessages(String messages) { 169 this.messages = messages; 170 } 171 /** 172 * @return 173 * @uml.property name="pool" 174 */ 175 public String getPool() { 176 return pool; 177 } 178 /** 179 * @param pool 180 * @uml.property name="pool" 181 */ 182 public void setPool(String pool) { 183 this.pool = pool; 184 } 185 /** 186 * @return 187 * @uml.property name="fullbackuppool" 188 */ 189 public String getFullbackuppool() { 190 return fullbackuppool; 191 } 192 /** 193 * @param fullbackuppool 194 * @uml.property name="fullbackuppool" 195 */ 196 public void setFullbackuppool(String fullbackuppool) { 197 this.fullbackuppool = fullbackuppool; 198 } 199 /** 200 * @return 201 * @uml.property name="differentialbackuppool" 202 */ 203 public String getDifferentialbackuppool() { 204 return differentialbackuppool; 205 } 206 /** 207 * @param differentialbackuppool 208 * @uml.property name="differentialbackuppool" 209 */ 210 public void setDifferentialbackuppool(String differentialbackuppool) { 211 this.differentialbackuppool = differentialbackuppool; 212 } 213 /** 214 * @return 215 * @uml.property name="incrementalbackuppool" 216 */ 217 public String getIncrementalbackuppool() { 218 return incrementalbackuppool; 219 } 220 /** 221 * @param incrementalbackuppool 222 * @uml.property name="incrementalbackuppool" 223 */ 224 public void setIncrementalbackuppool(String incrementalbackuppool) { 225 this.incrementalbackuppool = incrementalbackuppool; 226 } 227 /** 228 * @return 229 * @uml.property name="schedule" 230 */ 231 public String getSchedule() { 232 return schedule; 233 } 234 /** 235 * @param schedule 236 * @uml.property name="schedule" 237 */ 238 public void setSchedule(String schedule) { 239 this.schedule = schedule; 240 } 241 /** 242 * @return 243 * @uml.property name="storage" 244 */ 245 public String getStorage() { 246 return storage; 247 } 248 /** 249 * @param storage 250 * @uml.property name="storage" 251 */ 252 public void setStorage(String storage) { 253 this.storage = storage; 254 } 255 /** 256 * @return 257 * @uml.property name="maxstartdelay" 258 */ 259 public String getMaxstartdelay() { 260 return maxstartdelay; 261 } 262 /** 263 * @param maxstartdelay 264 * @uml.property name="maxstartdelay" 265 */ 266 public void setMaxstartdelay(String maxstartdelay) { 267 this.maxstartdelay = maxstartdelay; 268 } 269 /** 270 * @return 271 * @uml.property name="maxruntime" 272 */ 273 public String getMaxruntime() { 274 return maxruntime; 275 } 276 /** 277 * @param maxruntime 278 * @uml.property name="maxruntime" 279 */ 280 public void setMaxruntime(String maxruntime) { 281 this.maxruntime = maxruntime; 282 } 283 /** 284 * @return 285 * @uml.property name="incrementaldifferentialmaxwaittime" 286 */ 287 public String getIncrementaldifferentialmaxwaittime() { 288 return incrementaldifferentialmaxwaittime; 289 } 290 /** 291 * @param incrementaldifferentialmaxwaittime 292 * @uml.property name="incrementaldifferentialmaxwaittime" 293 */ 294 public void setIncrementaldifferentialmaxwaittime( 295 String incrementaldifferentialmaxwaittime) { 296 this.incrementaldifferentialmaxwaittime = incrementaldifferentialmaxwaittime; 297 } 298 /** 299 * @return 300 * @uml.property name="incrementalmaxruntime" 301 */ 302 public String getIncrementalmaxruntime() { 303 return incrementalmaxruntime; 304 } 305 /** 306 * @param incrementalmaxruntime 307 * @uml.property name="incrementalmaxruntime" 308 */ 309 public void setIncrementalmaxruntime(String incrementalmaxruntime) { 310 this.incrementalmaxruntime = incrementalmaxruntime; 311 } 312 /** 313 * @return 314 * @uml.property name="differentialmaxwaittime" 315 */ 316 public String getDifferentialmaxwaittime() { 317 return differentialmaxwaittime; 318 } 319 /** 320 * @param differentialmaxwaittime 321 * @uml.property name="differentialmaxwaittime" 322 */ 323 public void setDifferentialmaxwaittime(String differentialmaxwaittime) { 324 this.differentialmaxwaittime = differentialmaxwaittime; 325 } 326 /** 327 * @return 328 * @uml.property name="maxrunschedtime" 329 */ 330 public String getMaxrunschedtime() { 331 return maxrunschedtime; 332 } 333 /** 334 * @param maxrunschedtime 335 * @uml.property name="maxrunschedtime" 336 */ 337 public void setMaxrunschedtime(String maxrunschedtime) { 338 this.maxrunschedtime = maxrunschedtime; 339 } 340 /** 341 * @return 342 * @uml.property name="maxwaittime" 343 */ 344 public String getMaxwaittime() { 345 return maxwaittime; 346 } 347 /** 348 * @param maxwaittime 349 * @uml.property name="maxwaittime" 350 */ 351 public void setMaxwaittime(String maxwaittime) { 352 this.maxwaittime = maxwaittime; 353 } 354 /** 355 * @return 356 * @uml.property name="maxfullinterval" 357 */ 358 public String getMaxfullinterval() { 359 return maxfullinterval; 360 } 361 /** 362 * @param maxfullinterval 363 * @uml.property name="maxfullinterval" 364 */ 365 public void setMaxfullinterval(String maxfullinterval) { 366 this.maxfullinterval = maxfullinterval; 367 } 368 /** 369 * @return 370 * @uml.property name="prefermountedvolumes" 371 */ 372 public String getPrefermountedvolumes() { 373 return prefermountedvolumes; 374 } 375 /** 376 * @param prefermountedvolumes 377 * @uml.property name="prefermountedvolumes" 378 */ 379 public void setPrefermountedvolumes(String prefermountedvolumes) { 380 this.prefermountedvolumes = prefermountedvolumes; 381 } 382 /** 383 * @return 384 * @uml.property name="prunejobs" 385 */ 386 public String getPrunejobs() { 387 return prunejobs; 388 } 389 /** 390 * @param prunejobs 391 * @uml.property name="prunejobs" 392 */ 393 public void setPrunejobs(String prunejobs) { 394 this.prunejobs = prunejobs; 395 } 396 /** 397 * @return 398 * @uml.property name="prunefiles" 399 */ 400 public String getPrunefiles() { 401 return prunefiles; 402 } 403 /** 404 * @param prunefiles 405 * @uml.property name="prunefiles" 406 */ 407 public void setPrunefiles(String prunefiles) { 408 this.prunefiles = prunefiles; 409 } 410 /** 411 * @return 412 * @uml.property name="prunevolumes" 413 */ 414 public String getPrunevolumes() { 415 return prunevolumes; 416 } 417 /** 418 * @param prunevolumes 419 * @uml.property name="prunevolumes" 420 */ 421 public void setPrunevolumes(String prunevolumes) { 422 this.prunevolumes = prunevolumes; 423 } 424 /** 425 * @return 426 * @uml.property name="runscript" 427 */ 428 public String getRunscript() { 429 return runscript; 430 } 431 /** 432 * @param runscript 433 * @uml.property name="runscript" 434 */ 435 public void setRunscript(String runscript) { 436 this.runscript = runscript; 437 } 438 /** 439 * @return 440 * @uml.property name="runbeforejob" 441 */ 442 public String getRunbeforejob() { 443 return runbeforejob; 444 } 445 /** 446 * @param runbeforejob 447 * @uml.property name="runbeforejob" 448 */ 449 public void setRunbeforejob(String runbeforejob) { 450 this.runbeforejob = runbeforejob; 451 } 452 /** 453 * @return 454 * @uml.property name="runafterjob" 455 */ 456 public String getRunafterjob() { 457 return runafterjob; 458 } 459 /** 460 * @param runafterjob 461 * @uml.property name="runafterjob" 462 */ 463 public void setRunafterjob(String runafterjob) { 464 this.runafterjob = runafterjob; 465 } 466 /** 467 * @return 468 * @uml.property name="runafterfailedjob" 469 */ 470 public String getRunafterfailedjob() { 471 return runafterfailedjob; 472 } 473 /** 474 * @param runafterfailedjob 475 * @uml.property name="runafterfailedjob" 476 */ 477 public void setRunafterfailedjob(String runafterfailedjob) { 478 this.runafterfailedjob = runafterfailedjob; 479 } 480 /** 481 * @return 482 * @uml.property name="clientrunbeforejob" 483 */ 484 public String getClientrunbeforejob() { 485 return clientrunbeforejob; 486 } 487 /** 488 * @param clientrunbeforejob 489 * @uml.property name="clientrunbeforejob" 490 */ 491 public void setClientrunbeforejob(String clientrunbeforejob) { 492 this.clientrunbeforejob = clientrunbeforejob; 493 } 494 /** 495 * @return 496 * @uml.property name="clientrunafterjob" 497 */ 498 public String getClientrunafterjob() { 499 return clientrunafterjob; 500 } 501 /** 502 * @param clientrunafterjob 503 * @uml.property name="clientrunafterjob" 504 */ 505 public void setClientrunafterjob(String clientrunafterjob) { 506 this.clientrunafterjob = clientrunafterjob; 507 } 508 /** 509 * @return 510 * @uml.property name="rerunfailedlevels" 511 */ 512 public String getRerunfailedlevels() { 513 return rerunfailedlevels; 514 } 515 /** 516 * @param rerunfailedlevels 517 * @uml.property name="rerunfailedlevels" 518 */ 519 public void setRerunfailedlevels(String rerunfailedlevels) { 520 this.rerunfailedlevels = rerunfailedlevels; 521 } 522 /** 523 * @return 524 * @uml.property name="spooldata" 525 */ 526 public String getSpooldata() { 527 return spooldata; 528 } 529 /** 530 * @param spooldata 531 * @uml.property name="spooldata" 532 */ 533 public void setSpooldata(String spooldata) { 534 this.spooldata = spooldata; 535 } 536 /** 537 * @return 538 * @uml.property name="spoolattributes" 539 */ 540 public String getSpoolattributes() { 541 return spoolattributes; 542 } 543 /** 544 * @param spoolattributes 545 * @uml.property name="spoolattributes" 546 */ 547 public void setSpoolattributes(String spoolattributes) { 548 this.spoolattributes = spoolattributes; 549 } 550 /** 551 * @return 552 * @uml.property name="where" 553 */ 554 public String getWhere() { 555 return where; 556 } 557 /** 558 * @param where 559 * @uml.property name="where" 560 */ 561 public void setWhere(String where) { 562 this.where = where; 563 } 564 /** 565 * @return 566 * @uml.property name="addprefix" 567 */ 568 public String getAddprefix() { 569 return addprefix; 570 } 571 /** 572 * @param addprefix 573 * @uml.property name="addprefix" 574 */ 575 public void setAddprefix(String addprefix) { 576 this.addprefix = addprefix; 577 } 578 /** 579 * @return 580 * @uml.property name="addsuffix" 581 */ 582 public String getAddsuffix() { 583 return addsuffix; 584 } 585 /** 586 * @param addsuffix 587 * @uml.property name="addsuffix" 588 */ 589 public void setAddsuffix(String addsuffix) { 590 this.addsuffix = addsuffix; 591 } 592 /** 593 * @return 594 * @uml.property name="stripprefix" 595 */ 596 public String getStripprefix() { 597 return stripprefix; 598 } 599 /** 600 * @param stripprefix 601 * @uml.property name="stripprefix" 602 */ 603 public void setStripprefix(String stripprefix) { 604 this.stripprefix = stripprefix; 605 } 606 /** 607 * @return 608 * @uml.property name="regexwhere" 609 */ 610 public String getRegexwhere() { 611 return regexwhere; 612 } 613 /** 614 * @param regexwhere 615 * @uml.property name="regexwhere" 616 */ 617 public void setRegexwhere(String regexwhere) { 618 this.regexwhere = regexwhere; 619 } 620 /** 621 * @return 622 * @uml.property name="replace" 623 */ 624 public String getReplace() { 625 return replace; 626 } 627 /** 628 * @param replace 629 * @uml.property name="replace" 630 */ 631 public void setReplace(String replace) { 632 this.replace = replace; 633 } 634 /** 635 * @return 636 * @uml.property name="prefixlinks" 637 */ 638 public String getPrefixlinks() { 639 return prefixlinks; 640 } 641 /** 642 * @param prefixlinks 643 * @uml.property name="prefixlinks" 644 */ 645 public void setPrefixlinks(String prefixlinks) { 646 this.prefixlinks = prefixlinks; 647 } 648 /** 649 * @return 650 * @uml.property name="maximumconcurrentjobs" 651 */ 652 public String getMaximumconcurrentjobs() { 653 return maximumconcurrentjobs; 654 } 655 /** 656 * @param maximumconcurrentjobs 657 * @uml.property name="maximumconcurrentjobs" 658 */ 659 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 660 this.maximumconcurrentjobs = maximumconcurrentjobs; 661 } 662 /** 663 * @return 664 * @uml.property name="rescheduleonerror" 665 */ 666 public String getRescheduleonerror() { 667 return rescheduleonerror; 668 } 669 /** 670 * @param rescheduleonerror 671 * @uml.property name="rescheduleonerror" 672 */ 673 public void setRescheduleonerror(String rescheduleonerror) { 674 this.rescheduleonerror = rescheduleonerror; 675 } 676 /** 677 * @return 678 * @uml.property name="rescheduleinterval" 679 */ 680 public String getRescheduleinterval() { 681 return rescheduleinterval; 682 } 683 /** 684 * @param rescheduleinterval 685 * @uml.property name="rescheduleinterval" 686 */ 687 public void setRescheduleinterval(String rescheduleinterval) { 688 this.rescheduleinterval = rescheduleinterval; 689 } 690 /** 691 * @return 692 * @uml.property name="rescheduletimes" 693 */ 694 public String getRescheduletimes() { 695 return rescheduletimes; 696 } 697 /** 698 * @param rescheduletimes 699 * @uml.property name="rescheduletimes" 700 */ 701 public void setRescheduletimes(String rescheduletimes) { 702 this.rescheduletimes = rescheduletimes; 703 } 704 /** 705 * @return 706 * @uml.property name="allowduplicatejobs" 707 */ 708 public String getAllowduplicatejobs() { 709 return allowduplicatejobs; 710 } 711 /** 712 * @param allowduplicatejobs 713 * @uml.property name="allowduplicatejobs" 714 */ 715 public void setAllowduplicatejobs(String allowduplicatejobs) { 716 this.allowduplicatejobs = allowduplicatejobs; 717 } 718 /** 719 * @return 720 * @uml.property name="allowhigherduplicates" 721 */ 722 public String getAllowhigherduplicates() { 723 return allowhigherduplicates; 724 } 725 /** 726 * @param allowhigherduplicates 727 * @uml.property name="allowhigherduplicates" 728 */ 729 public void setAllowhigherduplicates(String allowhigherduplicates) { 730 this.allowhigherduplicates = allowhigherduplicates; 731 } 732 /** 733 * @return 734 * @uml.property name="cancellowerlevelduplicates" 735 */ 736 public String getCancellowerlevelduplicates() { 737 return cancellowerlevelduplicates; 738 } 739 /** 740 * @param cancellowerlevelduplicates 741 * @uml.property name="cancellowerlevelduplicates" 742 */ 743 public void setCancellowerlevelduplicates(String cancellowerlevelduplicates) { 744 this.cancellowerlevelduplicates = cancellowerlevelduplicates; 745 } 746 /** 747 * @return 748 * @uml.property name="cancelqueuedduplicates" 749 */ 750 public String getCancelqueuedduplicates() { 751 return cancelqueuedduplicates; 752 } 753 /** 754 * @param cancelqueuedduplicates 755 * @uml.property name="cancelqueuedduplicates" 756 */ 757 public void setCancelqueuedduplicates(String cancelqueuedduplicates) { 758 this.cancelqueuedduplicates = cancelqueuedduplicates; 759 } 760 /** 761 * @return 762 * @uml.property name="cancelrunningduplicates" 763 */ 764 public String getCancelrunningduplicates() { 765 return cancelrunningduplicates; 766 } 767 /** 768 * @param cancelrunningduplicates 769 * @uml.property name="cancelrunningduplicates" 770 */ 771 public void setCancelrunningduplicates(String cancelrunningduplicates) { 772 this.cancelrunningduplicates = cancelrunningduplicates; 773 } 774 /** 775 * @return 776 * @uml.property name="duplicatejobproximity" 777 */ 778 public String getDuplicatejobproximity() { 779 return duplicatejobproximity; 780 } 781 /** 782 * @param duplicatejobproximity 783 * @uml.property name="duplicatejobproximity" 784 */ 785 public void setDuplicatejobproximity(String duplicatejobproximity) { 786 this.duplicatejobproximity = duplicatejobproximity; 787 } 788 /** 789 * @return 790 * @uml.property name="run" 791 */ 792 public String getRun() { 793 return run; 794 } 795 /** 796 * @param run 797 * @uml.property name="run" 798 */ 799 public void setRun(String run) { 800 this.run = run; 801 } 802 /** 803 * @return 804 * @uml.property name="priority" 805 */ 806 public String getPriority() { 807 return priority; 808 } 809 /** 810 * @param priority 811 * @uml.property name="priority" 812 */ 813 public void setPriority(String priority) { 814 this.priority = priority; 815 } 816 /** 817 * @return 818 * @uml.property name="allowmixedpriority" 819 */ 820 public String getAllowmixedpriority() { 821 return allowmixedpriority; 822 } 823 /** 824 * @param allowmixedpriority 825 * @uml.property name="allowmixedpriority" 826 */ 827 public void setAllowmixedpriority(String allowmixedpriority) { 828 this.allowmixedpriority = allowmixedpriority; 829 } 830 /** 831 * @return 832 * @uml.property name="writepartafterjob" 833 */ 834 public String getWritepartafterjob() { 835 return writepartafterjob; 836 } 837 /** 838 * @param writepartafterjob 839 * @uml.property name="writepartafterjob" 840 */ 841 public void setWritepartafterjob(String writepartafterjob) { 842 this.writepartafterjob = writepartafterjob; 843 } 844 /** 845 * @uml.property name="name" 846 */ 3 847 private String name; 848 /** 849 * @uml.property name="enabled" 850 */ 4 851 private String enabled; 852 /** 853 * @uml.property name="type" 854 */ 5 855 private String type; 856 /** 857 * @uml.property name="level" 858 */ 6 859 private String level; 860 /** 861 * @uml.property name="accurate" 862 */ 7 863 private String accurate; 8 private String verifyJob; 9 private String jobDefs; 864 /** 865 * @uml.property name="verifyjob" 866 */ 867 private String verifyjob; 868 /** 869 * @uml.property name="jobdefs" 870 */ 871 private String jobdefs; 872 /** 873 * @uml.property name="bootstrap" 874 */ 10 875 private String bootstrap; 11 private String writeBootstrap; 876 /** 877 * @uml.property name="writebootstrap" 878 */ 879 private String writebootstrap; 880 /** 881 * @uml.property name="client" 882 */ 12 883 private String client; 13 private String fileSet; 884 /** 885 * @uml.property name="fileset" 886 */ 887 private String fileset; 888 /** 889 * @uml.property name="messages" 890 */ 14 891 private String messages; 892 /** 893 * @uml.property name="pool" 894 */ 15 895 private String pool; 16 private String fullBackupPool; 17 private String differentialBackupPool; 18 private String incrementalBackupPool; 896 /** 897 * @uml.property name="fullbackuppool" 898 */ 899 private String fullbackuppool; 900 /** 901 * @uml.property name="differentialbackuppool" 902 */ 903 private String differentialbackuppool; 904 /** 905 * @uml.property name="incrementalbackuppool" 906 */ 907 private String incrementalbackuppool; 908 /** 909 * @uml.property name="schedule" 910 */ 19 911 private String schedule; 912 /** 913 * @uml.property name="storage" 914 */ 20 915 private String storage; 21 private String maxStartDelay; 22 private String maxRunTime; 23 private String incrementalDifferentialMaxWaitTime; 24 private String incrementalMaxRunTime; 25 private String differentialMaxWaitTime; 26 private String maxRunSchedTime; 27 private String maxWaitTime; 28 private String maxFullInterval; 29 private String preferMountedVolumes; 30 private String pruneJobs; 31 private String pruneFiles; 32 private String pruneVolumes; 33 private String runScript; 34 private String runBeforeJob; 35 private String runAfterJob; 36 private String runAfterFailedJob; 37 private String clientRunBeforeJob; 38 private String clientRunAfterJob; 39 private String rerunFailedLevels; 40 private String spoolData; 41 private String spoolAttributes; 916 /** 917 * @uml.property name="maxstartdelay" 918 */ 919 private String maxstartdelay; 920 /** 921 * @uml.property name="maxruntime" 922 */ 923 private String maxruntime; 924 /** 925 * @uml.property name="incrementaldifferentialmaxwaittime" 926 */ 927 private String incrementaldifferentialmaxwaittime; 928 /** 929 * @uml.property name="incrementalmaxruntime" 930 */ 931 private String incrementalmaxruntime; 932 /** 933 * @uml.property name="differentialmaxwaittime" 934 */ 935 private String differentialmaxwaittime; 936 /** 937 * @uml.property name="maxrunschedtime" 938 */ 939 private String maxrunschedtime; 940 /** 941 * @uml.property name="maxwaittime" 942 */ 943 private String maxwaittime; 944 /** 945 * @uml.property name="maxfullinterval" 946 */ 947 private String maxfullinterval; 948 /** 949 * @uml.property name="prefermountedvolumes" 950 */ 951 private String prefermountedvolumes; 952 /** 953 * @uml.property name="prunejobs" 954 */ 955 private String prunejobs; 956 /** 957 * @uml.property name="prunefiles" 958 */ 959 private String prunefiles; 960 /** 961 * @uml.property name="prunevolumes" 962 */ 963 private String prunevolumes; 964 /** 965 * @uml.property name="runscript" 966 */ 967 private String runscript; 968 /** 969 * @uml.property name="runbeforejob" 970 */ 971 private String runbeforejob; 972 /** 973 * @uml.property name="runafterjob" 974 */ 975 private String runafterjob; 976 /** 977 * @uml.property name="runafterfailedjob" 978 */ 979 private String runafterfailedjob; 980 /** 981 * @uml.property name="clientrunbeforejob" 982 */ 983 private String clientrunbeforejob; 984 /** 985 * @uml.property name="clientrunafterjob" 986 */ 987 private String clientrunafterjob; 988 /** 989 * @uml.property name="rerunfailedlevels" 990 */ 991 private String rerunfailedlevels; 992 /** 993 * @uml.property name="spooldata" 994 */ 995 private String spooldata; 996 /** 997 * @uml.property name="spoolattributes" 998 */ 999 private String spoolattributes; 1000 /** 1001 * @uml.property name="where" 1002 */ 42 1003 private String where; 43 private String addPrefix; 44 private String addSuffix; 45 private String stripPrefix; 46 private String regexWhere; 1004 /** 1005 * @uml.property name="addprefix" 1006 */ 1007 private String addprefix; 1008 /** 1009 * @uml.property name="addsuffix" 1010 */ 1011 private String addsuffix; 1012 /** 1013 * @uml.property name="stripprefix" 1014 */ 1015 private String stripprefix; 1016 /** 1017 * @uml.property name="regexwhere" 1018 */ 1019 private String regexwhere; 1020 /** 1021 * @uml.property name="replace" 1022 */ 47 1023 private String replace; 48 private String prefixLinks; 49 private String maximumConcurrentJobs; 50 private String RescheduleOnError; 51 private String rescheduleInterval; 52 private String rescheduleTimes; 53 private String allowDuplicateJobs; 54 private String allowHigherDuplicates; 55 private String cancelLowerLevelDuplicates; 56 private String cancelQueuedDuplicates; 57 private String cancelRunningDuplicates; 58 private String duplicateJobProximity; 1024 /** 1025 * @uml.property name="prefixlinks" 1026 */ 1027 private String prefixlinks; 1028 /** 1029 * @uml.property name="maximumconcurrentjobs" 1030 */ 1031 private String maximumconcurrentjobs; 1032 /** 1033 * @uml.property name="rescheduleonerror" 1034 */ 1035 private String rescheduleonerror; 1036 /** 1037 * @uml.property name="rescheduleinterval" 1038 */ 1039 private String rescheduleinterval; 1040 /** 1041 * @uml.property name="rescheduletimes" 1042 */ 1043 private String rescheduletimes; 1044 /** 1045 * @uml.property name="allowduplicatejobs" 1046 */ 1047 private String allowduplicatejobs; 1048 /** 1049 * @uml.property name="allowhigherduplicates" 1050 */ 1051 private String allowhigherduplicates; 1052 /** 1053 * @uml.property name="cancellowerlevelduplicates" 1054 */ 1055 private String cancellowerlevelduplicates; 1056 /** 1057 * @uml.property name="cancelqueuedduplicates" 1058 */ 1059 private String cancelqueuedduplicates; 1060 /** 1061 * @uml.property name="cancelrunningduplicates" 1062 */ 1063 private String cancelrunningduplicates; 1064 /** 1065 * @uml.property name="duplicatejobproximity" 1066 */ 1067 private String duplicatejobproximity; 1068 /** 1069 * @uml.property name="run" 1070 */ 59 1071 private String run; 1072 /** 1073 * @uml.property name="priority" 1074 */ 60 1075 private String priority; 61 private String allowMixedPriority; 62 private String writePartAfterJob; 1076 /** 1077 * @uml.property name="allowmixedpriority" 1078 */ 1079 private String allowmixedpriority; 1080 /** 1081 * @uml.property name="writepartafterjob" 1082 */ 1083 private String writepartafterjob; 63 1084 64 1085 public JobDefsItem() {} 65 public JobDefsItem(String name, String client, String type, String level, String fileSet, String schedule, 66 String messages, String pool, String storage, String priority, String writeBootstrap){ 1086 public JobDefsItem(String name, String client, String type, String level, String fileset, String schedule, 1087 String messages, String pool, String storage, String priority, String writebootstrap){ 1088 } 67 1089 68 }69 public String getName() {70 return name;71 }72 public void setName(String name) {73 this.name = name;74 }75 public String getEnabled() {76 return enabled;77 }78 public void setEnabled(String enabled) {79 this.enabled = enabled;80 }81 public String getType() {82 return type;83 }84 public void setType(String type) {85 this.type = type;86 }87 public String getLevel() {88 return level;89 }90 public void setLevel(String level) {91 this.level = level;92 }93 public String getAccurate() {94 return accurate;95 }96 public void setAccurate(String accurate) {97 this.accurate = accurate;98 }99 public String getVerifyJob() {100 return verifyJob;101 }102 public void setVerifyJob(String verifyJob) {103 this.verifyJob = verifyJob;104 }105 public String getJobDefs() {106 return jobDefs;107 }108 public void setJobDefs(String jobDefs) {109 this.jobDefs = jobDefs;110 }111 public String getBootstrap() {112 return bootstrap;113 }114 public void setBootstrap(String bootstrap) {115 this.bootstrap = bootstrap;116 }117 public String getWriteBootstrap() {118 return writeBootstrap;119 }120 public void setWriteBootstrap(String writeBootstrap) {121 this.writeBootstrap = writeBootstrap;122 }123 public String getClient() {124 return client;125 }126 public void setClient(String client) {127 this.client = client;128 }129 public String getFileSet() {130 return fileSet;131 }132 public void setFileSet(String fileSet) {133 this.fileSet = fileSet;134 }135 public String getMessages() {136 return messages;137 }138 public void setMessages(String messages) {139 this.messages = messages;140 }141 public String getPool() {142 return pool;143 }144 public void setPool(String pool) {145 this.pool = pool;146 }147 public String getFullBackupPool() {148 return fullBackupPool;149 }150 public void setFullBackupPool(String fullBackupPool) {151 this.fullBackupPool = fullBackupPool;152 }153 public String getDifferentialBackupPool() {154 return differentialBackupPool;155 }156 public void setDifferentialBackupPool(String differentialBackupPool) {157 this.differentialBackupPool = differentialBackupPool;158 }159 public String getIncrementalBackupPool() {160 return incrementalBackupPool;161 }162 public void setIncrementalBackupPool(String incrementalBackupPool) {163 this.incrementalBackupPool = incrementalBackupPool;164 }165 public String getSchedule() {166 return schedule;167 }168 public void setSchedule(String schedule) {169 this.schedule = schedule;170 }171 public String getStorage() {172 return storage;173 }174 public void setStorage(String storage) {175 this.storage = storage;176 }177 public String getMaxStartDelay() {178 return maxStartDelay;179 }180 public void setMaxStartDelay(String maxStartDelay) {181 this.maxStartDelay = maxStartDelay;182 }183 public String getMaxRunTime() {184 return maxRunTime;185 }186 public void setMaxRunTime(String maxRunTime) {187 this.maxRunTime = maxRunTime;188 }189 public String getIncrementalDifferentialMaxWaitTime() {190 return incrementalDifferentialMaxWaitTime;191 }192 public void setIncrementalDifferentialMaxWaitTime(193 String incrementalDifferentialMaxWaitTime) {194 this.incrementalDifferentialMaxWaitTime = incrementalDifferentialMaxWaitTime;195 }196 public String getIncrementalMaxRunTime() {197 return incrementalMaxRunTime;198 }199 public void setIncrementalMaxRunTime(String incrementalMaxRunTime) {200 this.incrementalMaxRunTime = incrementalMaxRunTime;201 }202 public String getDifferentialMaxWaitTime() {203 return differentialMaxWaitTime;204 }205 public void setDifferentialMaxWaitTime(String differentialMaxWaitTime) {206 this.differentialMaxWaitTime = differentialMaxWaitTime;207 }208 public String getMaxRunSchedTime() {209 return maxRunSchedTime;210 }211 public void setMaxRunSchedTime(String maxRunSchedTime) {212 this.maxRunSchedTime = maxRunSchedTime;213 }214 public String getMaxWaitTime() {215 return maxWaitTime;216 }217 public void setMaxWaitTime(String maxWaitTime) {218 this.maxWaitTime = maxWaitTime;219 }220 public String getMaxFullInterval() {221 return maxFullInterval;222 }223 public void setMaxFullInterval(String maxFullInterval) {224 this.maxFullInterval = maxFullInterval;225 }226 public String getPreferMountedVolumes() {227 return preferMountedVolumes;228 }229 public void setPreferMountedVolumes(String preferMountedVolumes) {230 this.preferMountedVolumes = preferMountedVolumes;231 }232 public String getPruneJobs() {233 return pruneJobs;234 }235 public void setPruneJobs(String pruneJobs) {236 this.pruneJobs = pruneJobs;237 }238 public String getPruneFiles() {239 return pruneFiles;240 }241 public void setPruneFiles(String pruneFiles) {242 this.pruneFiles = pruneFiles;243 }244 public String getPruneVolumes() {245 return pruneVolumes;246 }247 public void setPruneVolumes(String pruneVolumes) {248 this.pruneVolumes = pruneVolumes;249 }250 public String getRunScript() {251 return runScript;252 }253 public void setRunScript(String runScript) {254 this.runScript = runScript;255 }256 public String getRunBeforeJob() {257 return runBeforeJob;258 }259 public void setRunBeforeJob(String runBeforeJob) {260 this.runBeforeJob = runBeforeJob;261 }262 public String getRunAfterJob() {263 return runAfterJob;264 }265 public void setRunAfterJob(String runAfterJob) {266 this.runAfterJob = runAfterJob;267 }268 public String getRunAfterFailedJob() {269 return runAfterFailedJob;270 }271 public void setRunAfterFailedJob(String runAfterFailedJob) {272 this.runAfterFailedJob = runAfterFailedJob;273 }274 public String getClientRunBeforeJob() {275 return clientRunBeforeJob;276 }277 public void setClientRunBeforeJob(String clientRunBeforeJob) {278 this.clientRunBeforeJob = clientRunBeforeJob;279 }280 public String getClientRunAfterJob() {281 return clientRunAfterJob;282 }283 public void setClientRunAfterJob(String clientRunAfterJob) {284 this.clientRunAfterJob = clientRunAfterJob;285 }286 public String getRerunFailedLevels() {287 return rerunFailedLevels;288 }289 public void setRerunFailedLevels(String rerunFailedLevels) {290 this.rerunFailedLevels = rerunFailedLevels;291 }292 public String getSpoolData() {293 return spoolData;294 }295 public void setSpoolData(String spoolData) {296 this.spoolData = spoolData;297 }298 public String getSpoolAttributes() {299 return spoolAttributes;300 }301 public void setSpoolAttributes(String spoolAttributes) {302 this.spoolAttributes = spoolAttributes;303 }304 public String getWhere() {305 return where;306 }307 public void setWhere(String where) {308 this.where = where;309 }310 public String getAddPrefix() {311 return addPrefix;312 }313 public void setAddPrefix(String addPrefix) {314 this.addPrefix = addPrefix;315 }316 public String getAddSuffix() {317 return addSuffix;318 }319 public void setAddSuffix(String addSuffix) {320 this.addSuffix = addSuffix;321 }322 public String getStripPrefix() {323 return stripPrefix;324 }325 public void setStripPrefix(String stripPrefix) {326 this.stripPrefix = stripPrefix;327 }328 public String getRegexWhere() {329 return regexWhere;330 }331 public void setRegexWhere(String regexWhere) {332 this.regexWhere = regexWhere;333 }334 public String getReplace() {335 return replace;336 }337 public void setReplace(String replace) {338 this.replace = replace;339 }340 public String getPrefixLinks() {341 return prefixLinks;342 }343 public void setPrefixLinks(String prefixLinks) {344 this.prefixLinks = prefixLinks;345 }346 public String getMaximumConcurrentJobs() {347 return maximumConcurrentJobs;348 }349 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {350 this.maximumConcurrentJobs = maximumConcurrentJobs;351 }352 public String getRescheduleOnError() {353 return RescheduleOnError;354 }355 public void setRescheduleOnError(String rescheduleOnError) {356 RescheduleOnError = rescheduleOnError;357 }358 public String getRescheduleInterval() {359 return rescheduleInterval;360 }361 public void setRescheduleInterval(String rescheduleInterval) {362 this.rescheduleInterval = rescheduleInterval;363 }364 public String getRescheduleTimes() {365 return rescheduleTimes;366 }367 public void setRescheduleTimes(String rescheduleTimes) {368 this.rescheduleTimes = rescheduleTimes;369 }370 public String getAllowDuplicateJobs() {371 return allowDuplicateJobs;372 }373 public void setAllowDuplicateJobs(String allowDuplicateJobs) {374 this.allowDuplicateJobs = allowDuplicateJobs;375 }376 public String getAllowHigherDuplicates() {377 return allowHigherDuplicates;378 }379 public void setAllowHigherDuplicates(String allowHigherDuplicates) {380 this.allowHigherDuplicates = allowHigherDuplicates;381 }382 public String getCancelLowerLevelDuplicates() {383 return cancelLowerLevelDuplicates;384 }385 public void setCancelLowerLevelDuplicates(String cancelLowerLevelDuplicates) {386 this.cancelLowerLevelDuplicates = cancelLowerLevelDuplicates;387 }388 public String getCancelQueuedDuplicates() {389 return cancelQueuedDuplicates;390 }391 public void setCancelQueuedDuplicates(String cancelQueuedDuplicates) {392 this.cancelQueuedDuplicates = cancelQueuedDuplicates;393 }394 public String getCancelRunningDuplicates() {395 return cancelRunningDuplicates;396 }397 public void setCancelRunningDuplicates(String cancelRunningDuplicates) {398 this.cancelRunningDuplicates = cancelRunningDuplicates;399 }400 public String getDuplicateJobProximity() {401 return duplicateJobProximity;402 }403 public void setDuplicateJobProximity(String duplicateJobProximity) {404 this.duplicateJobProximity = duplicateJobProximity;405 }406 public String getRun() {407 return run;408 }409 public void setRun(String run) {410 this.run = run;411 }412 public String getPriority() {413 return priority;414 }415 public void setPriority(String priority) {416 this.priority = priority;417 }418 public String getAllowMixedPriority() {419 return allowMixedPriority;420 }421 public void setAllowMixedPriority(String allowMixedPriority) {422 this.allowMixedPriority = allowMixedPriority;423 }424 public String getWritePartAfterJob() {425 return writePartAfterJob;426 }427 public void setWritePartAfterJob(String writePartAfterJob) {428 this.writePartAfterJob = writePartAfterJob;429 }430 1090 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobItem.java
r847 r858 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class JobItem extends ItemType implements UserObjectItem{ 3 4 /** 5 * @uml.property name="name" 6 */ 3 7 private String name; 8 /** 9 * @uml.property name="enabled" 10 */ 4 11 private String enabled; 12 /** 13 * @uml.property name="description" 14 */ 5 15 private String description; 16 /** 17 * @uml.property name="type" 18 */ 6 19 private String type; 20 /** 21 * @uml.property name="level" 22 */ 7 23 private String level; 24 /** 25 * @uml.property name="accurate" 26 */ 8 27 private String accurate; 9 private String verifyJob; 10 private String jobDefs; 28 /** 29 * @uml.property name="verifyjob" 30 */ 31 private String verifyjob; 32 /** 33 * @uml.property name="jobdefs" 34 */ 35 private String jobdefs; 36 /** 37 * @uml.property name="bootstrap" 38 */ 11 39 private String bootstrap; 12 private String writeBootstrap; 40 /** 41 * @uml.property name="writebootstrap" 42 */ 43 private String writebootstrap; 44 /** 45 * @uml.property name="client" 46 */ 13 47 private String client; 14 private String fileSet; 48 /** 49 * @uml.property name="fileset" 50 */ 51 private String fileset; 52 /** 53 * @uml.property name="messages" 54 */ 15 55 private String messages; 56 /** 57 * @uml.property name="pool" 58 */ 16 59 private String pool; 17 private String fullBackupPool; 18 private String differentialBackupPool; 19 private String incrementalBackupPool; 60 /** 61 * @uml.property name="fullbackuppool" 62 */ 63 private String fullbackuppool; 64 /** 65 * @uml.property name="differentialbackuppool" 66 */ 67 private String differentialbackuppool; 68 /** 69 * @uml.property name="incrementalbackuppool" 70 */ 71 private String incrementalbackuppool; 72 /** 73 * @uml.property name="schedule" 74 */ 20 75 private String schedule; 76 /** 77 * @uml.property name="storage" 78 */ 21 79 private String storage; 22 private String maxStartDelay; 23 private String maxRunTime; 24 private String incrementalDifferentialMaxWaitTime; 25 private String incrementalMaxRunTime; 26 private String differentialMaxWaitTime; 27 private String maxRunSchedTime; 28 private String maxWaitTime; 29 private String maxFullInterval; 30 private String preferMountedVolumes; 31 private String pruneJobs; 32 private String pruneFiles; 33 private String pruneVolumes; 34 private String runScript; 35 private String runBeforeJob; 36 private String runAfterJob; 37 private String runAfterFailedJob; 38 private String clientRunBeforeJob; 39 private String clientRunAfterJob; 40 private String rerunFailedLevels; 41 private String spoolData; 42 private String spoolAttributes; 80 /** 81 * @uml.property name="maxstartdelay" 82 */ 83 private String maxstartdelay; 84 /** 85 * @uml.property name="maxruntime" 86 */ 87 private String maxruntime; 88 /** 89 * @uml.property name="incrementaldifferentialmaxwaittime" 90 */ 91 private String incrementaldifferentialmaxwaittime; 92 /** 93 * @uml.property name="incrementalmaxruntime" 94 */ 95 private String incrementalmaxruntime; 96 /** 97 * @uml.property name="differentialmaxwaittime" 98 */ 99 private String differentialmaxwaittime; 100 /** 101 * @uml.property name="maxrunschedtime" 102 */ 103 private String maxrunschedtime; 104 /** 105 * @uml.property name="maxwaittime" 106 */ 107 private String maxwaittime; 108 /** 109 * @uml.property name="maxfullinterval" 110 */ 111 private String maxfullinterval; 112 /** 113 * @uml.property name="prefermountedvolumes" 114 */ 115 private String prefermountedvolumes; 116 /** 117 * @uml.property name="prunejobs" 118 */ 119 private String prunejobs; 120 /** 121 * @uml.property name="prunefiles" 122 */ 123 private String prunefiles; 124 /** 125 * @uml.property name="prunevolumes" 126 */ 127 private String prunevolumes; 128 /** 129 * @uml.property name="runscript" 130 */ 131 private String runscript; 132 /** 133 * @uml.property name="runbeforejob" 134 */ 135 private String runbeforejob; 136 /** 137 * @uml.property name="runafterjob" 138 */ 139 private String runafterjob; 140 /** 141 * @uml.property name="runafterfailedjob" 142 */ 143 private String runafterfailedjob; 144 /** 145 * @uml.property name="clientrunbeforejob" 146 */ 147 private String clientrunbeforejob; 148 /** 149 * @uml.property name="clientrunafterjob" 150 */ 151 private String clientrunafterjob; 152 /** 153 * @uml.property name="rerunfailedlevels" 154 */ 155 private String rerunfailedlevels; 156 /** 157 * @uml.property name="spooldata" 158 */ 159 private String spooldata; 160 /** 161 * @uml.property name="spoolattributes" 162 */ 163 private String spoolattributes; 164 /** 165 * @uml.property name="where" 166 */ 43 167 private String where; 44 private String addPrefix; 45 private String addSuffix; 46 private String stripPrefix; 47 private String regexWhere; 168 /** 169 * @uml.property name="addprefix" 170 */ 171 private String addprefix; 172 /** 173 * @uml.property name="addsuffix" 174 */ 175 private String addsuffix; 176 /** 177 * @uml.property name="stripprefix" 178 */ 179 private String stripprefix; 180 /** 181 * @uml.property name="regexwhere" 182 */ 183 private String regexwhere; 184 /** 185 * @uml.property name="replace" 186 */ 48 187 private String replace; 49 private String prefixLinks; 50 private String maximumConcurrentJobs; 51 private String RescheduleOnError; 52 private String rescheduleInterval; 53 private String rescheduleTimes; 54 private String allowDuplicateJobs; 55 private String allowHigherDuplicates; 56 private String cancelLowerLevelDuplicates; 57 private String cancelQueuedDuplicates; 58 private String cancelRunningDuplicates; 59 private String duplicateJobProximity; 188 /** 189 * @uml.property name="prefixlinks" 190 */ 191 private String prefixlinks; 192 /** 193 * @uml.property name="maximumconcurrentjobs" 194 */ 195 private String maximumconcurrentjobs; 196 /** 197 * @uml.property name="rescheduleonerror" 198 */ 199 private String rescheduleonerror; 200 /** 201 * @uml.property name="rescheduleinterval" 202 */ 203 private String rescheduleinterval; 204 /** 205 * @uml.property name="rescheduletimes" 206 */ 207 private String rescheduletimes; 208 /** 209 * @uml.property name="allowduplicatejobs" 210 */ 211 private String allowduplicatejobs; 212 /** 213 * @uml.property name="allowhigherduplicates" 214 */ 215 private String allowhigherduplicates; 216 /** 217 * @uml.property name="cancellowerlevelduplicates" 218 */ 219 private String cancellowerlevelduplicates; 220 /** 221 * @uml.property name="cancelqueuedduplicates" 222 */ 223 private String cancelqueuedduplicates; 224 /** 225 * @uml.property name="cancelrunningduplicates" 226 */ 227 private String cancelrunningduplicates; 228 /** 229 * @uml.property name="duplicatejobproximity" 230 */ 231 private String duplicatejobproximity; 232 /** 233 * @uml.property name="run" 234 */ 60 235 private String run; 236 /** 237 * @uml.property name="priority" 238 */ 61 239 private String priority; 62 private String allowMixedPriority; 63 private String writePartAfterJob; 240 /** 241 * @uml.property name="allowmixedpriority" 242 */ 243 private String allowmixedpriority; 244 /** 245 * @uml.property name="writepartafterjob" 246 */ 247 private String writepartafterjob; 64 248 65 249 public JobItem() {} 66 public JobItem(String name, String client, String type, String level, String fileSet, String schedule, 67 String messages, String pool, String storage, String priority, String writeBootstrap){ 68 69 } 250 public JobItem(String name, String client, String type, String level, String fileset, String schedule, 251 String messages, String pool, String storage, String priority, String writebootstrap){ 252 } 253 /** 254 * @return 255 * @uml.property name="name" 256 */ 70 257 public String getName() { 71 258 return name; 72 259 } 260 /** 261 * @param name 262 * @uml.property name="name" 263 */ 73 264 public void setName(String name) { 74 265 this.name = name; 75 266 } 267 /** 268 * @return 269 * @uml.property name="enabled" 270 */ 76 271 public String getEnabled() { 77 272 return enabled; 78 273 } 274 /** 275 * @param enabled 276 * @uml.property name="enabled" 277 */ 79 278 public void setEnabled(String enabled) { 80 279 this.enabled = enabled; 81 280 } 281 /** 282 * @return 283 * @uml.property name="description" 284 */ 285 public String getDescription() { 286 return description; 287 } 288 /** 289 * @param description 290 * @uml.property name="description" 291 */ 82 292 public void setDescription(String description) { 83 293 this.description = description; 84 294 } 85 public String getDescription() { 86 return description; 87 } 295 /** 296 * @return 297 * @uml.property name="type" 298 */ 88 299 public String getType() { 89 300 return type; 90 301 } 302 /** 303 * @param type 304 * @uml.property name="type" 305 */ 91 306 public void setType(String type) { 92 307 this.type = type; 93 308 } 309 /** 310 * @return 311 * @uml.property name="level" 312 */ 94 313 public String getLevel() { 95 314 return level; 96 315 } 316 /** 317 * @param level 318 * @uml.property name="level" 319 */ 97 320 public void setLevel(String level) { 98 321 this.level = level; 99 322 } 323 /** 324 * @return 325 * @uml.property name="accurate" 326 */ 100 327 public String getAccurate() { 101 328 return accurate; 102 329 } 330 /** 331 * @param accurate 332 * @uml.property name="accurate" 333 */ 103 334 public void setAccurate(String accurate) { 104 335 this.accurate = accurate; 105 336 } 106 public String getVerifyJob() { 107 return verifyJob; 108 } 109 public void setVerifyJob(String verifyJob) { 110 this.verifyJob = verifyJob; 111 } 112 public String getJobDefs() { 113 return jobDefs; 114 } 115 public void setJobDefs(String jobDefs) { 116 this.jobDefs = jobDefs; 117 } 337 /** 338 * @return 339 * @uml.property name="verifyjob" 340 */ 341 public String getVerifyjob() { 342 return verifyjob; 343 } 344 /** 345 * @param verifyjob 346 * @uml.property name="verifyjob" 347 */ 348 public void setVerifyjob(String verifyjob) { 349 this.verifyjob = verifyjob; 350 } 351 /** 352 * @return 353 * @uml.property name="jobdefs" 354 */ 355 public String getJobdefs() { 356 return jobdefs; 357 } 358 /** 359 * @param jobdefs 360 * @uml.property name="jobdefs" 361 */ 362 public void setJobdefs(String jobdefs) { 363 this.jobdefs = jobdefs; 364 } 365 /** 366 * @return 367 * @uml.property name="bootstrap" 368 */ 118 369 public String getBootstrap() { 119 370 return bootstrap; 120 371 } 372 /** 373 * @param bootstrap 374 * @uml.property name="bootstrap" 375 */ 121 376 public void setBootstrap(String bootstrap) { 122 377 this.bootstrap = bootstrap; 123 378 } 124 public String getWriteBootstrap() { 125 return writeBootstrap; 126 } 127 public void setWriteBootstrap(String writeBootstrap) { 128 this.writeBootstrap = writeBootstrap; 129 } 379 /** 380 * @return 381 * @uml.property name="writebootstrap" 382 */ 383 public String getWritebootstrap() { 384 return writebootstrap; 385 } 386 /** 387 * @param writebootstrap 388 * @uml.property name="writebootstrap" 389 */ 390 public void setWritebootstrap(String writebootstrap) { 391 this.writebootstrap = writebootstrap; 392 } 393 /** 394 * @return 395 * @uml.property name="client" 396 */ 130 397 public String getClient() { 131 398 return client; 132 399 } 400 /** 401 * @param client 402 * @uml.property name="client" 403 */ 133 404 public void setClient(String client) { 134 405 this.client = client; 135 406 } 136 public String getFileSet() { 137 return fileSet; 138 } 139 public void setFileSet(String fileSet) { 140 this.fileSet = fileSet; 141 } 407 /** 408 * @return 409 * @uml.property name="fileset" 410 */ 411 public String getFileset() { 412 return fileset; 413 } 414 /** 415 * @param fileset 416 * @uml.property name="fileset" 417 */ 418 public void setFileset(String fileset) { 419 this.fileset = fileset; 420 } 421 /** 422 * @return 423 * @uml.property name="messages" 424 */ 142 425 public String getMessages() { 143 426 return messages; 144 427 } 428 /** 429 * @param messages 430 * @uml.property name="messages" 431 */ 145 432 public void setMessages(String messages) { 146 433 this.messages = messages; 147 434 } 435 /** 436 * @return 437 * @uml.property name="pool" 438 */ 148 439 public String getPool() { 149 440 return pool; 150 441 } 442 /** 443 * @param pool 444 * @uml.property name="pool" 445 */ 151 446 public void setPool(String pool) { 152 447 this.pool = pool; 153 448 } 154 public String getFullBackupPool() { 155 return fullBackupPool; 156 } 157 public void setFullBackupPool(String fullBackupPool) { 158 this.fullBackupPool = fullBackupPool; 159 } 160 public String getDifferentialBackupPool() { 161 return differentialBackupPool; 162 } 163 public void setDifferentialBackupPool(String differentialBackupPool) { 164 this.differentialBackupPool = differentialBackupPool; 165 } 166 public String getIncrementalBackupPool() { 167 return incrementalBackupPool; 168 } 169 public void setIncrementalBackupPool(String incrementalBackupPool) { 170 this.incrementalBackupPool = incrementalBackupPool; 171 } 449 /** 450 * @return 451 * @uml.property name="fullbackuppool" 452 */ 453 public String getFullbackuppool() { 454 return fullbackuppool; 455 } 456 /** 457 * @param fullbackuppool 458 * @uml.property name="fullbackuppool" 459 */ 460 public void setFullbackuppool(String fullbackuppool) { 461 this.fullbackuppool = fullbackuppool; 462 } 463 /** 464 * @return 465 * @uml.property name="differentialbackuppool" 466 */ 467 public String getDifferentialbackuppool() { 468 return differentialbackuppool; 469 } 470 /** 471 * @param differentialbackuppool 472 * @uml.property name="differentialbackuppool" 473 */ 474 public void setDifferentialbackuppool(String differentialbackuppool) { 475 this.differentialbackuppool = differentialbackuppool; 476 } 477 /** 478 * @return 479 * @uml.property name="incrementalbackuppool" 480 */ 481 public String getIncrementalbackuppool() { 482 return incrementalbackuppool; 483 } 484 /** 485 * @param incrementalbackuppool 486 * @uml.property name="incrementalbackuppool" 487 */ 488 public void setIncrementalbackuppool(String incrementalbackuppool) { 489 this.incrementalbackuppool = incrementalbackuppool; 490 } 491 /** 492 * @return 493 * @uml.property name="schedule" 494 */ 172 495 public String getSchedule() { 173 496 return schedule; 174 497 } 498 /** 499 * @param schedule 500 * @uml.property name="schedule" 501 */ 175 502 public void setSchedule(String schedule) { 176 503 this.schedule = schedule; 177 504 } 505 /** 506 * @return 507 * @uml.property name="storage" 508 */ 178 509 public String getStorage() { 179 510 return storage; 180 511 } 512 /** 513 * @param storage 514 * @uml.property name="storage" 515 */ 181 516 public void setStorage(String storage) { 182 517 this.storage = storage; 183 518 } 184 public String getMaxStartDelay() { 185 return maxStartDelay; 186 } 187 public void setMaxStartDelay(String maxStartDelay) { 188 this.maxStartDelay = maxStartDelay; 189 } 190 public String getMaxRunTime() { 191 return maxRunTime; 192 } 193 public void setMaxRunTime(String maxRunTime) { 194 this.maxRunTime = maxRunTime; 195 } 196 public String getIncrementalDifferentialMaxWaitTime() { 197 return incrementalDifferentialMaxWaitTime; 198 } 199 public void setIncrementalDifferentialMaxWaitTime( 200 String incrementalDifferentialMaxWaitTime) { 201 this.incrementalDifferentialMaxWaitTime = incrementalDifferentialMaxWaitTime; 202 } 203 public String getIncrementalMaxRunTime() { 204 return incrementalMaxRunTime; 205 } 206 public void setIncrementalMaxRunTime(String incrementalMaxRunTime) { 207 this.incrementalMaxRunTime = incrementalMaxRunTime; 208 } 209 public String getDifferentialMaxWaitTime() { 210 return differentialMaxWaitTime; 211 } 212 public void setDifferentialMaxWaitTime(String differentialMaxWaitTime) { 213 this.differentialMaxWaitTime = differentialMaxWaitTime; 214 } 215 public String getMaxRunSchedTime() { 216 return maxRunSchedTime; 217 } 218 public void setMaxRunSchedTime(String maxRunSchedTime) { 219 this.maxRunSchedTime = maxRunSchedTime; 220 } 221 public String getMaxWaitTime() { 222 return maxWaitTime; 223 } 224 public void setMaxWaitTime(String maxWaitTime) { 225 this.maxWaitTime = maxWaitTime; 226 } 227 public String getMaxFullInterval() { 228 return maxFullInterval; 229 } 230 public void setMaxFullInterval(String maxFullInterval) { 231 this.maxFullInterval = maxFullInterval; 232 } 233 public String getPreferMountedVolumes() { 234 return preferMountedVolumes; 235 } 236 public void setPreferMountedVolumes(String preferMountedVolumes) { 237 this.preferMountedVolumes = preferMountedVolumes; 238 } 239 public String getPruneJobs() { 240 return pruneJobs; 241 } 242 public void setPruneJobs(String pruneJobs) { 243 this.pruneJobs = pruneJobs; 244 } 245 public String getPruneFiles() { 246 return pruneFiles; 247 } 248 public void setPruneFiles(String pruneFiles) { 249 this.pruneFiles = pruneFiles; 250 } 251 public String getPruneVolumes() { 252 return pruneVolumes; 253 } 254 public void setPruneVolumes(String pruneVolumes) { 255 this.pruneVolumes = pruneVolumes; 256 } 257 public String getRunScript() { 258 return runScript; 259 } 260 public void setRunScript(String runScript) { 261 this.runScript = runScript; 262 } 263 public String getRunBeforeJob() { 264 return runBeforeJob; 265 } 266 public void setRunBeforeJob(String runBeforeJob) { 267 this.runBeforeJob = runBeforeJob; 268 } 269 public String getRunAfterJob() { 270 return runAfterJob; 271 } 272 public void setRunAfterJob(String runAfterJob) { 273 this.runAfterJob = runAfterJob; 274 } 275 public String getRunAfterFailedJob() { 276 return runAfterFailedJob; 277 } 278 public void setRunAfterFailedJob(String runAfterFailedJob) { 279 this.runAfterFailedJob = runAfterFailedJob; 280 } 281 public String getClientRunBeforeJob() { 282 return clientRunBeforeJob; 283 } 284 public void setClientRunBeforeJob(String clientRunBeforeJob) { 285 this.clientRunBeforeJob = clientRunBeforeJob; 286 } 287 public String getClientRunAfterJob() { 288 return clientRunAfterJob; 289 } 290 public void setClientRunAfterJob(String clientRunAfterJob) { 291 this.clientRunAfterJob = clientRunAfterJob; 292 } 293 public String getRerunFailedLevels() { 294 return rerunFailedLevels; 295 } 296 public void setRerunFailedLevels(String rerunFailedLevels) { 297 this.rerunFailedLevels = rerunFailedLevels; 298 } 299 public String getSpoolData() { 300 return spoolData; 301 } 302 public void setSpoolData(String spoolData) { 303 this.spoolData = spoolData; 304 } 305 public String getSpoolAttributes() { 306 return spoolAttributes; 307 } 308 public void setSpoolAttributes(String spoolAttributes) { 309 this.spoolAttributes = spoolAttributes; 310 } 519 /** 520 * @return 521 * @uml.property name="maxstartdelay" 522 */ 523 public String getMaxstartdelay() { 524 return maxstartdelay; 525 } 526 /** 527 * @param maxstartdelay 528 * @uml.property name="maxstartdelay" 529 */ 530 public void setMaxstartdelay(String maxstartdelay) { 531 this.maxstartdelay = maxstartdelay; 532 } 533 /** 534 * @return 535 * @uml.property name="maxruntime" 536 */ 537 public String getMaxruntime() { 538 return maxruntime; 539 } 540 /** 541 * @param maxruntime 542 * @uml.property name="maxruntime" 543 */ 544 public void setMaxruntime(String maxruntime) { 545 this.maxruntime = maxruntime; 546 } 547 /** 548 * @return 549 * @uml.property name="incrementaldifferentialmaxwaittime" 550 */ 551 public String getIncrementaldifferentialmaxwaittime() { 552 return incrementaldifferentialmaxwaittime; 553 } 554 /** 555 * @param incrementaldifferentialmaxwaittime 556 * @uml.property name="incrementaldifferentialmaxwaittime" 557 */ 558 public void setIncrementaldifferentialmaxwaittime( 559 String incrementaldifferentialmaxwaittime) { 560 this.incrementaldifferentialmaxwaittime = incrementaldifferentialmaxwaittime; 561 } 562 /** 563 * @return 564 * @uml.property name="incrementalmaxruntime" 565 */ 566 public String getIncrementalmaxruntime() { 567 return incrementalmaxruntime; 568 } 569 /** 570 * @param incrementalmaxruntime 571 * @uml.property name="incrementalmaxruntime" 572 */ 573 public void setIncrementalmaxruntime(String incrementalmaxruntime) { 574 this.incrementalmaxruntime = incrementalmaxruntime; 575 } 576 /** 577 * @return 578 * @uml.property name="differentialmaxwaittime" 579 */ 580 public String getDifferentialmaxwaittime() { 581 return differentialmaxwaittime; 582 } 583 /** 584 * @param differentialmaxwaittime 585 * @uml.property name="differentialmaxwaittime" 586 */ 587 public void setDifferentialmaxwaittime(String differentialmaxwaittime) { 588 this.differentialmaxwaittime = differentialmaxwaittime; 589 } 590 /** 591 * @return 592 * @uml.property name="maxrunschedtime" 593 */ 594 public String getMaxrunschedtime() { 595 return maxrunschedtime; 596 } 597 /** 598 * @param maxrunschedtime 599 * @uml.property name="maxrunschedtime" 600 */ 601 public void setMaxrunschedtime(String maxrunschedtime) { 602 this.maxrunschedtime = maxrunschedtime; 603 } 604 /** 605 * @return 606 * @uml.property name="maxwaittime" 607 */ 608 public String getMaxwaittime() { 609 return maxwaittime; 610 } 611 /** 612 * @param maxwaittime 613 * @uml.property name="maxwaittime" 614 */ 615 public void setMaxwaittime(String maxwaittime) { 616 this.maxwaittime = maxwaittime; 617 } 618 /** 619 * @return 620 * @uml.property name="maxfullinterval" 621 */ 622 public String getMaxfullinterval() { 623 return maxfullinterval; 624 } 625 /** 626 * @param maxfullinterval 627 * @uml.property name="maxfullinterval" 628 */ 629 public void setMaxfullinterval(String maxfullinterval) { 630 this.maxfullinterval = maxfullinterval; 631 } 632 /** 633 * @return 634 * @uml.property name="prefermountedvolumes" 635 */ 636 public String getPrefermountedvolumes() { 637 return prefermountedvolumes; 638 } 639 /** 640 * @param prefermountedvolumes 641 * @uml.property name="prefermountedvolumes" 642 */ 643 public void setPrefermountedvolumes(String prefermountedvolumes) { 644 this.prefermountedvolumes = prefermountedvolumes; 645 } 646 /** 647 * @return 648 * @uml.property name="prunejobs" 649 */ 650 public String getPrunejobs() { 651 return prunejobs; 652 } 653 /** 654 * @param prunejobs 655 * @uml.property name="prunejobs" 656 */ 657 public void setPrunejobs(String prunejobs) { 658 this.prunejobs = prunejobs; 659 } 660 /** 661 * @return 662 * @uml.property name="prunefiles" 663 */ 664 public String getPrunefiles() { 665 return prunefiles; 666 } 667 /** 668 * @param prunefiles 669 * @uml.property name="prunefiles" 670 */ 671 public void setPrunefiles(String prunefiles) { 672 this.prunefiles = prunefiles; 673 } 674 /** 675 * @return 676 * @uml.property name="prunevolumes" 677 */ 678 public String getPrunevolumes() { 679 return prunevolumes; 680 } 681 /** 682 * @param prunevolumes 683 * @uml.property name="prunevolumes" 684 */ 685 public void setPrunevolumes(String prunevolumes) { 686 this.prunevolumes = prunevolumes; 687 } 688 /** 689 * @return 690 * @uml.property name="runscript" 691 */ 692 public String getRunscript() { 693 return runscript; 694 } 695 /** 696 * @param runscript 697 * @uml.property name="runscript" 698 */ 699 public void setRunscript(String runscript) { 700 this.runscript = runscript; 701 } 702 /** 703 * @return 704 * @uml.property name="runbeforejob" 705 */ 706 public String getRunbeforejob() { 707 return runbeforejob; 708 } 709 /** 710 * @param runbeforejob 711 * @uml.property name="runbeforejob" 712 */ 713 public void setRunbeforejob(String runbeforejob) { 714 this.runbeforejob = runbeforejob; 715 } 716 /** 717 * @return 718 * @uml.property name="runafterjob" 719 */ 720 public String getRunafterjob() { 721 return runafterjob; 722 } 723 /** 724 * @param runafterjob 725 * @uml.property name="runafterjob" 726 */ 727 public void setRunafterjob(String runafterjob) { 728 this.runafterjob = runafterjob; 729 } 730 /** 731 * @return 732 * @uml.property name="runafterfailedjob" 733 */ 734 public String getRunafterfailedjob() { 735 return runafterfailedjob; 736 } 737 /** 738 * @param runafterfailedjob 739 * @uml.property name="runafterfailedjob" 740 */ 741 public void setRunafterfailedjob(String runafterfailedjob) { 742 this.runafterfailedjob = runafterfailedjob; 743 } 744 /** 745 * @return 746 * @uml.property name="clientrunbeforejob" 747 */ 748 public String getClientrunbeforejob() { 749 return clientrunbeforejob; 750 } 751 /** 752 * @param clientrunbeforejob 753 * @uml.property name="clientrunbeforejob" 754 */ 755 public void setClientrunbeforejob(String clientrunbeforejob) { 756 this.clientrunbeforejob = clientrunbeforejob; 757 } 758 /** 759 * @return 760 * @uml.property name="clientrunafterjob" 761 */ 762 public String getClientrunafterjob() { 763 return clientrunafterjob; 764 } 765 /** 766 * @param clientrunafterjob 767 * @uml.property name="clientrunafterjob" 768 */ 769 public void setClientrunafterjob(String clientrunafterjob) { 770 this.clientrunafterjob = clientrunafterjob; 771 } 772 /** 773 * @return 774 * @uml.property name="rerunfailedlevels" 775 */ 776 public String getRerunfailedlevels() { 777 return rerunfailedlevels; 778 } 779 /** 780 * @param rerunfailedlevels 781 * @uml.property name="rerunfailedlevels" 782 */ 783 public void setRerunfailedlevels(String rerunfailedlevels) { 784 this.rerunfailedlevels = rerunfailedlevels; 785 } 786 /** 787 * @return 788 * @uml.property name="spooldata" 789 */ 790 public String getSpooldata() { 791 return spooldata; 792 } 793 /** 794 * @param spooldata 795 * @uml.property name="spooldata" 796 */ 797 public void setSpooldata(String spooldata) { 798 this.spooldata = spooldata; 799 } 800 /** 801 * @return 802 * @uml.property name="spoolattributes" 803 */ 804 public String getSpoolattributes() { 805 return spoolattributes; 806 } 807 /** 808 * @param spoolattributes 809 * @uml.property name="spoolattributes" 810 */ 811 public void setSpoolattributes(String spoolattributes) { 812 this.spoolattributes = spoolattributes; 813 } 814 /** 815 * @return 816 * @uml.property name="where" 817 */ 311 818 public String getWhere() { 312 819 return where; 313 820 } 821 /** 822 * @param where 823 * @uml.property name="where" 824 */ 314 825 public void setWhere(String where) { 315 826 this.where = where; 316 827 } 317 public String getAddPrefix() { 318 return addPrefix; 319 } 320 public void setAddPrefix(String addPrefix) { 321 this.addPrefix = addPrefix; 322 } 323 public String getAddSuffix() { 324 return addSuffix; 325 } 326 public void setAddSuffix(String addSuffix) { 327 this.addSuffix = addSuffix; 328 } 329 public String getStripPrefix() { 330 return stripPrefix; 331 } 332 public void setStripPrefix(String stripPrefix) { 333 this.stripPrefix = stripPrefix; 334 } 335 public String getRegexWhere() { 336 return regexWhere; 337 } 338 public void setRegexWhere(String regexWhere) { 339 this.regexWhere = regexWhere; 340 } 828 /** 829 * @return 830 * @uml.property name="addprefix" 831 */ 832 public String getAddprefix() { 833 return addprefix; 834 } 835 /** 836 * @param addprefix 837 * @uml.property name="addprefix" 838 */ 839 public void setAddprefix(String addprefix) { 840 this.addprefix = addprefix; 841 } 842 /** 843 * @return 844 * @uml.property name="addsuffix" 845 */ 846 public String getAddsuffix() { 847 return addsuffix; 848 } 849 /** 850 * @param addsuffix 851 * @uml.property name="addsuffix" 852 */ 853 public void setAddsuffix(String addsuffix) { 854 this.addsuffix = addsuffix; 855 } 856 /** 857 * @return 858 * @uml.property name="stripprefix" 859 */ 860 public String getStripprefix() { 861 return stripprefix; 862 } 863 /** 864 * @param stripprefix 865 * @uml.property name="stripprefix" 866 */ 867 public void setStripprefix(String stripprefix) { 868 this.stripprefix = stripprefix; 869 } 870 /** 871 * @return 872 * @uml.property name="regexwhere" 873 */ 874 public String getRegexwhere() { 875 return regexwhere; 876 } 877 /** 878 * @param regexwhere 879 * @uml.property name="regexwhere" 880 */ 881 public void setRegexwhere(String regexwhere) { 882 this.regexwhere = regexwhere; 883 } 884 /** 885 * @return 886 * @uml.property name="replace" 887 */ 341 888 public String getReplace() { 342 889 return replace; 343 890 } 891 /** 892 * @param replace 893 * @uml.property name="replace" 894 */ 344 895 public void setReplace(String replace) { 345 896 this.replace = replace; 346 897 } 347 public String getPrefixLinks() { 348 return prefixLinks; 349 } 350 public void setPrefixLinks(String prefixLinks) { 351 this.prefixLinks = prefixLinks; 352 } 353 public String getMaximumConcurrentJobs() { 354 return maximumConcurrentJobs; 355 } 356 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 357 this.maximumConcurrentJobs = maximumConcurrentJobs; 358 } 359 public String getRescheduleOnError() { 360 return RescheduleOnError; 361 } 362 public void setRescheduleOnError(String rescheduleOnError) { 363 RescheduleOnError = rescheduleOnError; 364 } 365 public String getRescheduleInterval() { 366 return rescheduleInterval; 367 } 368 public void setRescheduleInterval(String rescheduleInterval) { 369 this.rescheduleInterval = rescheduleInterval; 370 } 371 public String getRescheduleTimes() { 372 return rescheduleTimes; 373 } 374 public void setRescheduleTimes(String rescheduleTimes) { 375 this.rescheduleTimes = rescheduleTimes; 376 } 377 public String getAllowDuplicateJobs() { 378 return allowDuplicateJobs; 379 } 380 public void setAllowDuplicateJobs(String allowDuplicateJobs) { 381 this.allowDuplicateJobs = allowDuplicateJobs; 382 } 383 public String getAllowHigherDuplicates() { 384 return allowHigherDuplicates; 385 } 386 public void setAllowHigherDuplicates(String allowHigherDuplicates) { 387 this.allowHigherDuplicates = allowHigherDuplicates; 388 } 389 public String getCancelLowerLevelDuplicates() { 390 return cancelLowerLevelDuplicates; 391 } 392 public void setCancelLowerLevelDuplicates(String cancelLowerLevelDuplicates) { 393 this.cancelLowerLevelDuplicates = cancelLowerLevelDuplicates; 394 } 395 public String getCancelQueuedDuplicates() { 396 return cancelQueuedDuplicates; 397 } 398 public void setCancelQueuedDuplicates(String cancelQueuedDuplicates) { 399 this.cancelQueuedDuplicates = cancelQueuedDuplicates; 400 } 401 public String getCancelRunningDuplicates() { 402 return cancelRunningDuplicates; 403 } 404 public void setCancelRunningDuplicates(String cancelRunningDuplicates) { 405 this.cancelRunningDuplicates = cancelRunningDuplicates; 406 } 407 public String getDuplicateJobProximity() { 408 return duplicateJobProximity; 409 } 410 public void setDuplicateJobProximity(String duplicateJobProximity) { 411 this.duplicateJobProximity = duplicateJobProximity; 412 } 898 /** 899 * @return 900 * @uml.property name="prefixlinks" 901 */ 902 public String getPrefixlinks() { 903 return prefixlinks; 904 } 905 /** 906 * @param prefixlinks 907 * @uml.property name="prefixlinks" 908 */ 909 public void setPrefixlinks(String prefixlinks) { 910 this.prefixlinks = prefixlinks; 911 } 912 /** 913 * @return 914 * @uml.property name="maximumconcurrentjobs" 915 */ 916 public String getMaximumconcurrentjobs() { 917 return maximumconcurrentjobs; 918 } 919 /** 920 * @param maximumconcurrentjobs 921 * @uml.property name="maximumconcurrentjobs" 922 */ 923 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 924 this.maximumconcurrentjobs = maximumconcurrentjobs; 925 } 926 /** 927 * @return 928 * @uml.property name="rescheduleonerror" 929 */ 930 public String getRescheduleonerror() { 931 return rescheduleonerror; 932 } 933 /** 934 * @param rescheduleonerror 935 * @uml.property name="rescheduleonerror" 936 */ 937 public void setRescheduleonerror(String rescheduleonerror) { 938 this.rescheduleonerror = rescheduleonerror; 939 } 940 /** 941 * @return 942 * @uml.property name="rescheduleinterval" 943 */ 944 public String getRescheduleinterval() { 945 return rescheduleinterval; 946 } 947 /** 948 * @param rescheduleinterval 949 * @uml.property name="rescheduleinterval" 950 */ 951 public void setRescheduleinterval(String rescheduleinterval) { 952 this.rescheduleinterval = rescheduleinterval; 953 } 954 /** 955 * @return 956 * @uml.property name="rescheduletimes" 957 */ 958 public String getRescheduletimes() { 959 return rescheduletimes; 960 } 961 /** 962 * @param rescheduletimes 963 * @uml.property name="rescheduletimes" 964 */ 965 public void setRescheduletimes(String rescheduletimes) { 966 this.rescheduletimes = rescheduletimes; 967 } 968 /** 969 * @return 970 * @uml.property name="allowduplicatejobs" 971 */ 972 public String getAllowduplicatejobs() { 973 return allowduplicatejobs; 974 } 975 /** 976 * @param allowduplicatejobs 977 * @uml.property name="allowduplicatejobs" 978 */ 979 public void setAllowduplicatejobs(String allowduplicatejobs) { 980 this.allowduplicatejobs = allowduplicatejobs; 981 } 982 /** 983 * @return 984 * @uml.property name="allowhigherduplicates" 985 */ 986 public String getAllowhigherduplicates() { 987 return allowhigherduplicates; 988 } 989 /** 990 * @param allowhigherduplicates 991 * @uml.property name="allowhigherduplicates" 992 */ 993 public void setAllowhigherduplicates(String allowhigherduplicates) { 994 this.allowhigherduplicates = allowhigherduplicates; 995 } 996 /** 997 * @return 998 * @uml.property name="cancellowerlevelduplicates" 999 */ 1000 public String getCancellowerlevelduplicates() { 1001 return cancellowerlevelduplicates; 1002 } 1003 /** 1004 * @param cancellowerlevelduplicates 1005 * @uml.property name="cancellowerlevelduplicates" 1006 */ 1007 public void setCancellowerlevelduplicates(String cancellowerlevelduplicates) { 1008 this.cancellowerlevelduplicates = cancellowerlevelduplicates; 1009 } 1010 /** 1011 * @return 1012 * @uml.property name="cancelqueuedduplicates" 1013 */ 1014 public String getCancelqueuedduplicates() { 1015 return cancelqueuedduplicates; 1016 } 1017 /** 1018 * @param cancelqueuedduplicates 1019 * @uml.property name="cancelqueuedduplicates" 1020 */ 1021 public void setCancelqueuedduplicates(String cancelqueuedduplicates) { 1022 this.cancelqueuedduplicates = cancelqueuedduplicates; 1023 } 1024 /** 1025 * @return 1026 * @uml.property name="cancelrunningduplicates" 1027 */ 1028 public String getCancelrunningduplicates() { 1029 return cancelrunningduplicates; 1030 } 1031 /** 1032 * @param cancelrunningduplicates 1033 * @uml.property name="cancelrunningduplicates" 1034 */ 1035 public void setCancelrunningduplicates(String cancelrunningduplicates) { 1036 this.cancelrunningduplicates = cancelrunningduplicates; 1037 } 1038 /** 1039 * @return 1040 * @uml.property name="duplicatejobproximity" 1041 */ 1042 public String getDuplicatejobproximity() { 1043 return duplicatejobproximity; 1044 } 1045 /** 1046 * @param duplicatejobproximity 1047 * @uml.property name="duplicatejobproximity" 1048 */ 1049 public void setDuplicatejobproximity(String duplicatejobproximity) { 1050 this.duplicatejobproximity = duplicatejobproximity; 1051 } 1052 /** 1053 * @return 1054 * @uml.property name="run" 1055 */ 413 1056 public String getRun() { 414 1057 return run; 415 1058 } 1059 /** 1060 * @param run 1061 * @uml.property name="run" 1062 */ 416 1063 public void setRun(String run) { 417 1064 this.run = run; 418 1065 } 1066 /** 1067 * @return 1068 * @uml.property name="priority" 1069 */ 419 1070 public String getPriority() { 420 1071 return priority; 421 1072 } 1073 /** 1074 * @param priority 1075 * @uml.property name="priority" 1076 */ 422 1077 public void setPriority(String priority) { 423 1078 this.priority = priority; 424 1079 } 425 public String getAllowMixedPriority() { 426 return allowMixedPriority; 427 } 428 public void setAllowMixedPriority(String allowMixedPriority) { 429 this.allowMixedPriority = allowMixedPriority; 430 } 431 public String getWritePartAfterJob() { 432 return writePartAfterJob; 433 } 434 public void setWritePartAfterJob(String writePartAfterJob) { 435 this.writePartAfterJob = writePartAfterJob; 1080 /** 1081 * @return 1082 * @uml.property name="allowmixedpriority" 1083 */ 1084 public String getAllowmixedpriority() { 1085 return allowmixedpriority; 1086 } 1087 /** 1088 * @param allowmixedpriority 1089 * @uml.property name="allowmixedpriority" 1090 */ 1091 public void setAllowmixedpriority(String allowmixedpriority) { 1092 this.allowmixedpriority = allowmixedpriority; 1093 } 1094 /** 1095 * @return 1096 * @uml.property name="writepartafterjob" 1097 */ 1098 public String getWritepartafterjob() { 1099 return writepartafterjob; 1100 } 1101 /** 1102 * @param writepartafterjob 1103 * @uml.property name="writepartafterjob" 1104 */ 1105 public void setWritepartafterjob(String writepartafterjob) { 1106 this.writepartafterjob = writepartafterjob; 436 1107 } 437 1108 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/MessagesItem.java
r844 r858 1 1 package de.dass_it.vanhelsing.gui.items; 2 2 public class MessagesItem extends ItemType implements UserObjectItem{ 3 /** 4 * @uml.property name="name" 5 */ 3 6 private String name; 4 private String mailCommand; 7 /** 8 * @uml.property name="mailcommand" 9 */ 10 private String mailcommand; 11 /** 12 * @uml.property name="destination" 13 */ 5 14 private String destination; 6 15 … … 9 18 public MessagesItem(String name, String mailCommand, String destination){ 10 19 setName(name); 11 setMail Command(mailCommand);20 setMailcommand(mailCommand); 12 21 setDestination(destination); 13 22 } 14 23 24 /** 25 * @param name 26 * @uml.property name="name" 27 */ 15 28 public void setName(String name) { 16 29 this.name = name; 17 30 } 18 31 32 /** 33 * @return 34 * @uml.property name="name" 35 */ 19 36 public String getName() { 20 37 return name; 21 38 } 22 39 23 public void setMailCommand(String mailCommand) { 24 this.mailCommand = mailCommand; 40 /** 41 * @param mailcommand 42 * @uml.property name="mailcommand" 43 */ 44 public void setMailcommand(String mailcommand) { 45 this.mailcommand = mailcommand; 25 46 } 26 47 27 public String getMailCommand() { 28 return mailCommand; 48 /** 49 * @return 50 * @uml.property name="mailcommand" 51 */ 52 public String getMailcommand() { 53 return mailcommand; 29 54 } 30 55 56 /** 57 * @param destination 58 * @uml.property name="destination" 59 */ 31 60 public void setDestination(String destination) { 32 61 this.destination = destination; 33 62 } 34 63 64 /** 65 * @return 66 * @uml.property name="destination" 67 */ 35 68 public String getDestination() { 36 69 return destination; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/PoolItem.java
r844 r858 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 */ 3 6 private String name; 4 private String maximumVolumes; 5 private String poolType; 7 /** 8 * @uml.property name="maximumvolumes" 9 */ 10 private String maximumvolumes; 11 /** 12 * @uml.property name="pooltype" 13 */ 14 private String pooltype; 15 /** 16 * @uml.property name="storage" 17 */ 6 18 private String storage; 7 private String useVolumeOnce; 8 private String maximumVolumeJobs; 9 private String maximumVolumeFiles; 10 private String maximumVolumeBytes; 11 private String volumeUseDuration; 12 private String catalogFiles; 13 private String autoPrune; 14 private String volumeRetention; 15 private String actionOnPurge; 16 private String scratchPool; 17 private String recyclePool; 19 /** 20 * @uml.property name="usevolumeonce" 21 */ 22 private String usevolumeonce; 23 /** 24 * @uml.property name="maximumvolumejobs" 25 */ 26 private String maximumvolumejobs; 27 /** 28 * @uml.property name="maximumvolumefiles" 29 */ 30 private String maximumvolumefiles; 31 /** 32 * @uml.property name="maximumvolumebytes" 33 */ 34 private String maximumvolumebytes; 35 /** 36 * @uml.property name="volumeuseduration" 37 */ 38 private String volumeuseduration; 39 /** 40 * @uml.property name="catalogfiles" 41 */ 42 private String catalogfiles; 43 /** 44 * @uml.property name="autoprune" 45 */ 46 private String autoprune; 47 /** 48 * @uml.property name="volumeretention" 49 */ 50 private String volumeretention; 51 /** 52 * @uml.property name="actiononpurge" 53 */ 54 private String actiononpurge; 55 /** 56 * @uml.property name="scratchpool" 57 */ 58 private String scratchpool; 59 /** 60 * @uml.property name="recyclepool" 61 */ 62 private String recyclepool; 63 /** 64 * @uml.property name="recycle" 65 */ 18 66 private String recycle; 19 private String recycleOldestVolume; 20 private String recycleCurrentVolume; 21 private String purgeOldestVolume; 22 private String fileRetention; 23 private String jobRetention; 24 private String cleaningPrefix; 25 private String labelFormat; 67 /** 68 * @uml.property name="recycleoldestvolume" 69 */ 70 private String recycleoldestvolume; 71 /** 72 * @uml.property name="recyclecurrentvolume" 73 */ 74 private String recyclecurrentvolume; 75 /** 76 * @uml.property name="purgeoldestvolume" 77 */ 78 private String purgeoldestvolume; 79 /** 80 * @uml.property name="fileretention" 81 */ 82 private String fileretention; 83 /** 84 * @uml.property name="jobretention" 85 */ 86 private String jobretention; 87 /** 88 * @uml.property name="cleaningprefix" 89 */ 90 private String cleaningprefix; 91 /** 92 * @uml.property name="labelformat" 93 */ 94 private String labelformat; 26 95 27 96 public PoolItem() {} 28 97 29 public PoolItem(String name, String pool Type){98 public PoolItem(String name, String pooltype){ 30 99 setName(name); 31 setPoolType(poolType); 32 } 33 100 setPooltype(pooltype); 101 } 102 103 /** 104 * @return 105 * @uml.property name="name" 106 */ 34 107 public String getName() { 35 108 return name; 36 109 } 37 110 111 /** 112 * @param name 113 * @uml.property name="name" 114 */ 38 115 public void setName(String name) { 39 116 this.name = name; 40 117 } 41 118 42 public String getMaximumVolumes() { 43 return maximumVolumes; 44 } 45 46 public void setMaximumVolumes(String maximumVolumes) { 47 this.maximumVolumes = maximumVolumes; 48 } 49 50 public String getPoolType() { 51 return poolType; 52 } 53 54 public void setPoolType(String poolType) { 55 this.poolType = poolType; 56 } 57 119 /** 120 * @return 121 * @uml.property name="maximumvolumes" 122 */ 123 public String getMaximumvolumes() { 124 return maximumvolumes; 125 } 126 127 /** 128 * @param maximumvolumes 129 * @uml.property name="maximumvolumes" 130 */ 131 public void setMaximumvolumes(String maximumvolumes) { 132 this.maximumvolumes = maximumvolumes; 133 } 134 135 /** 136 * @return 137 * @uml.property name="pooltype" 138 */ 139 public String getPooltype() { 140 return pooltype; 141 } 142 143 /** 144 * @param pooltype 145 * @uml.property name="pooltype" 146 */ 147 public void setPooltype(String pooltype) { 148 this.pooltype = pooltype; 149 } 150 151 /** 152 * @return 153 * @uml.property name="storage" 154 */ 58 155 public String getStorage() { 59 156 return storage; 60 157 } 61 158 159 /** 160 * @param storage 161 * @uml.property name="storage" 162 */ 62 163 public void setStorage(String storage) { 63 164 this.storage = storage; 64 165 } 65 166 66 public String getUseVolumeOnce() { 67 return useVolumeOnce; 68 } 69 70 public void setUseVolumeOnce(String useVolumeOnce) { 71 this.useVolumeOnce = useVolumeOnce; 72 } 73 74 public String getMaximumVolumeJobs() { 75 return maximumVolumeJobs; 76 } 77 78 public void setMaximumVolumeJobs(String maximumVolumeJobs) { 79 this.maximumVolumeJobs = maximumVolumeJobs; 80 } 81 82 public String getMaximumVolumeFiles() { 83 return maximumVolumeFiles; 84 } 85 86 public void setMaximumVolumeFiles(String maximumVolumeFiles) { 87 this.maximumVolumeFiles = maximumVolumeFiles; 88 } 89 90 public String getMaximumVolumeBytes() { 91 return maximumVolumeBytes; 92 } 93 94 public void setMaximumVolumeBytes(String maximumVolumeBytes) { 95 this.maximumVolumeBytes = maximumVolumeBytes; 96 } 97 98 public String getVolumeUseDuration() { 99 return volumeUseDuration; 100 } 101 102 public void setVolumeUseDuration(String volumeUseDuration) { 103 this.volumeUseDuration = volumeUseDuration; 104 } 105 106 public String getCatalogFiles() { 107 return catalogFiles; 108 } 109 110 public void setCatalogFiles(String catalogFiles) { 111 this.catalogFiles = catalogFiles; 112 } 113 114 public String getAutoPrune() { 115 return autoPrune; 116 } 117 118 public void setAutoPrune(String autoPrune) { 119 this.autoPrune = autoPrune; 120 } 121 122 public String getVolumeRetention() { 123 return volumeRetention; 124 } 125 126 public void setVolumeRetention(String volumeRetention) { 127 this.volumeRetention = volumeRetention; 128 } 129 130 public String getActionOnPurge() { 131 return actionOnPurge; 132 } 133 134 public void setActionOnPurge(String actionOnPurge) { 135 this.actionOnPurge = actionOnPurge; 136 } 137 138 public String getScratchPool() { 139 return scratchPool; 140 } 141 142 public void setScratchPool(String scratchPool) { 143 this.scratchPool = scratchPool; 144 } 145 146 public String getRecyclePool() { 147 return recyclePool; 148 } 149 150 public void setRecyclePool(String recyclePool) { 151 this.recyclePool = recyclePool; 152 } 153 167 /** 168 * @return 169 * @uml.property name="usevolumeonce" 170 */ 171 public String getUsevolumeonce() { 172 return usevolumeonce; 173 } 174 175 /** 176 * @param usevolumeonce 177 * @uml.property name="usevolumeonce" 178 */ 179 public void setUsevolumeonce(String usevolumeonce) { 180 this.usevolumeonce = usevolumeonce; 181 } 182 183 /** 184 * @return 185 * @uml.property name="maximumvolumejobs" 186 */ 187 public String getMaximumvolumejobs() { 188 return maximumvolumejobs; 189 } 190 191 /** 192 * @param maximumvolumejobs 193 * @uml.property name="maximumvolumejobs" 194 */ 195 public void setMaximumvolumejobs(String maximumvolumejobs) { 196 this.maximumvolumejobs = maximumvolumejobs; 197 } 198 199 /** 200 * @return 201 * @uml.property name="maximumvolumefiles" 202 */ 203 public String getMaximumvolumefiles() { 204 return maximumvolumefiles; 205 } 206 207 /** 208 * @param maximumvolumefiles 209 * @uml.property name="maximumvolumefiles" 210 */ 211 public void setMaximumvolumefiles(String maximumvolumefiles) { 212 this.maximumvolumefiles = maximumvolumefiles; 213 } 214 215 /** 216 * @return 217 * @uml.property name="maximumvolumebytes" 218 */ 219 public String getMaximumvolumebytes() { 220 return maximumvolumebytes; 221 } 222 223 /** 224 * @param maximumvolumebytes 225 * @uml.property name="maximumvolumebytes" 226 */ 227 public void setMaximumvolumebytes(String maximumvolumebytes) { 228 this.maximumvolumebytes = maximumvolumebytes; 229 } 230 231 /** 232 * @return 233 * @uml.property name="volumeuseduration" 234 */ 235 public String getVolumeuseduration() { 236 return volumeuseduration; 237 } 238 239 /** 240 * @param volumeuseduration 241 * @uml.property name="volumeuseduration" 242 */ 243 public void setVolumeuseduration(String volumeuseduration) { 244 this.volumeuseduration = volumeuseduration; 245 } 246 247 /** 248 * @return 249 * @uml.property name="catalogfiles" 250 */ 251 public String getCatalogfiles() { 252 return catalogfiles; 253 } 254 255 /** 256 * @param catalogfiles 257 * @uml.property name="catalogfiles" 258 */ 259 public void setCatalogfiles(String catalogfiles) { 260 this.catalogfiles = catalogfiles; 261 } 262 263 /** 264 * @return 265 * @uml.property name="autoprune" 266 */ 267 public String getAutoprune() { 268 return autoprune; 269 } 270 271 /** 272 * @param autoprune 273 * @uml.property name="autoprune" 274 */ 275 public void setAutoprune(String autoprune) { 276 this.autoprune = autoprune; 277 } 278 279 /** 280 * @return 281 * @uml.property name="volumeretention" 282 */ 283 public String getVolumeretention() { 284 return volumeretention; 285 } 286 287 /** 288 * @param volumeretention 289 * @uml.property name="volumeretention" 290 */ 291 public void setVolumeretention(String volumeretention) { 292 this.volumeretention = volumeretention; 293 } 294 295 /** 296 * @return 297 * @uml.property name="actiononpurge" 298 */ 299 public String getActiononpurge() { 300 return actiononpurge; 301 } 302 303 /** 304 * @param actiononpurge 305 * @uml.property name="actiononpurge" 306 */ 307 public void setActiononpurge(String actiononpurge) { 308 this.actiononpurge = actiononpurge; 309 } 310 311 /** 312 * @return 313 * @uml.property name="scratchpool" 314 */ 315 public String getScratchpool() { 316 return scratchpool; 317 } 318 319 /** 320 * @param scratchpool 321 * @uml.property name="scratchpool" 322 */ 323 public void setScratchpool(String scratchpool) { 324 this.scratchpool = scratchpool; 325 } 326 327 /** 328 * @return 329 * @uml.property name="recyclepool" 330 */ 331 public String getRecyclepool() { 332 return recyclepool; 333 } 334 335 /** 336 * @param recyclepool 337 * @uml.property name="recyclepool" 338 */ 339 public void setRecyclepool(String recyclepool) { 340 this.recyclepool = recyclepool; 341 } 342 343 /** 344 * @return 345 * @uml.property name="recycle" 346 */ 154 347 public String getRecycle() { 155 348 return recycle; 156 349 } 157 350 351 /** 352 * @param recycle 353 * @uml.property name="recycle" 354 */ 158 355 public void setRecycle(String recycle) { 159 356 this.recycle = recycle; 160 357 } 161 358 162 public String getRecycleOldestVolume() { 163 return recycleOldestVolume; 164 } 165 166 public void setRecycleOldestVolume(String recycleOldestVolume) { 167 this.recycleOldestVolume = recycleOldestVolume; 168 } 169 170 public String getRecycleCurrentVolume() { 171 return recycleCurrentVolume; 172 } 173 174 public void setRecycleCurrentVolume(String recycleCurrentVolume) { 175 this.recycleCurrentVolume = recycleCurrentVolume; 176 } 177 178 public String getPurgeOldestVolume() { 179 return purgeOldestVolume; 180 } 181 182 public void setPurgeOldestVolume(String purgeOldestVolume) { 183 this.purgeOldestVolume = purgeOldestVolume; 184 } 185 186 public String getFileRetention() { 187 return fileRetention; 188 } 189 190 public void setFileRetention(String fileRetention) { 191 this.fileRetention = fileRetention; 192 } 193 194 public String getJobRetention() { 195 return jobRetention; 196 } 197 198 public void setJobRetention(String jobRetention) { 199 this.jobRetention = jobRetention; 200 } 201 202 public String getCleaningPrefix() { 203 return cleaningPrefix; 204 } 205 206 public void setCleaningPrefix(String cleaningPrefix) { 207 this.cleaningPrefix = cleaningPrefix; 208 } 209 210 public String getLabelFormat() { 211 return labelFormat; 212 } 213 214 public void setLabelFormat(String labelFormat) { 215 this.labelFormat = labelFormat; 359 /** 360 * @return 361 * @uml.property name="recycleoldestvolume" 362 */ 363 public String getRecycleoldestvolume() { 364 return recycleoldestvolume; 365 } 366 367 /** 368 * @param recycleoldestvolume 369 * @uml.property name="recycleoldestvolume" 370 */ 371 public void setRecycleoldestvolume(String recycleoldestvolume) { 372 this.recycleoldestvolume = recycleoldestvolume; 373 } 374 375 /** 376 * @return 377 * @uml.property name="recyclecurrentvolume" 378 */ 379 public String getRecyclecurrentvolume() { 380 return recyclecurrentvolume; 381 } 382 383 /** 384 * @param recyclecurrentvolume 385 * @uml.property name="recyclecurrentvolume" 386 */ 387 public void setRecyclecurrentvolume(String recyclecurrentvolume) { 388 this.recyclecurrentvolume = recyclecurrentvolume; 389 } 390 391 /** 392 * @return 393 * @uml.property name="purgeoldestvolume" 394 */ 395 public String getPurgeoldestvolume() { 396 return purgeoldestvolume; 397 } 398 399 /** 400 * @param purgeoldestvolume 401 * @uml.property name="purgeoldestvolume" 402 */ 403 public void setPurgeoldestvolume(String purgeoldestvolume) { 404 this.purgeoldestvolume = purgeoldestvolume; 405 } 406 407 /** 408 * @return 409 * @uml.property name="fileretention" 410 */ 411 public String getFileretention() { 412 return fileretention; 413 } 414 415 /** 416 * @param fileretention 417 * @uml.property name="fileretention" 418 */ 419 public void setFileretention(String fileretention) { 420 this.fileretention = fileretention; 421 } 422 423 /** 424 * @return 425 * @uml.property name="jobretention" 426 */ 427 public String getJobretention() { 428 return jobretention; 429 } 430 431 /** 432 * @param jobretention 433 * @uml.property name="jobretention" 434 */ 435 public void setJobretention(String jobretention) { 436 this.jobretention = jobretention; 437 } 438 439 /** 440 * @return 441 * @uml.property name="cleaningprefix" 442 */ 443 public String getCleaningprefix() { 444 return cleaningprefix; 445 } 446 447 /** 448 * @param cleaningprefix 449 * @uml.property name="cleaningprefix" 450 */ 451 public void setCleaningprefix(String cleaningprefix) { 452 this.cleaningprefix = cleaningprefix; 453 } 454 455 /** 456 * @return 457 * @uml.property name="labelformat" 458 */ 459 public String getLabelformat() { 460 return labelformat; 461 } 462 463 /** 464 * @param labelformat 465 * @uml.property name="labelformat" 466 */ 467 public void setLabelformat(String labelformat) { 468 this.labelformat = labelformat; 216 469 } 217 470 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDDeviceItem.java
r844 r858 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 */ 3 6 private String name; 4 private String archiveDevice; 5 private String deviceType; 6 private String mediaType; 7 /** 8 * @uml.property name="archivedevice" 9 */ 10 private String archivedevice; 11 /** 12 * @uml.property name="devicetype" 13 */ 14 private String devicetype; 15 /** 16 * @uml.property name="mediatype" 17 */ 18 private String mediatype; 19 /** 20 * @uml.property name="autochanger" 21 */ 7 22 private String autochanger; 8 private String changerDevice; 9 private String changerCommand; 10 private String alertCommand; 11 private String driveIndex; 23 /** 24 * @uml.property name="changerdevice" 25 */ 26 private String changerdevice; 27 /** 28 * @uml.property name="changercommand" 29 */ 30 private String changercommand; 31 /** 32 * @uml.property name="alertcommand" 33 */ 34 private String alertcommand; 35 /** 36 * @uml.property name="driveindex" 37 */ 38 private String driveindex; 39 /** 40 * @uml.property name="autoselect" 41 */ 12 42 private String autoselect; 13 private String maximumConcurentJobs; 14 private String maximumChangerWait; 15 private String maximumRewindWait; 16 private String maximumOpenWait; 17 private String alwaysOpen; 18 private String volumePollInterval; 19 private String closeonPoll; 43 /** 44 * @uml.property name="maximumconcurentjobs" 45 */ 46 private String maximumconcurentjobs; 47 /** 48 * @uml.property name="maximumchangerwait" 49 */ 50 private String maximumchangerwait; 51 /** 52 * @uml.property name="maximumrewindwait" 53 */ 54 private String maximumrewindwait; 55 /** 56 * @uml.property name="maximumopenwait" 57 */ 58 private String maximumopenwait; 59 /** 60 * @uml.property name="alwaysopen" 61 */ 62 private String alwaysopen; 63 /** 64 * @uml.property name="volumepollinterval" 65 */ 66 private String volumepollinterval; 67 /** 68 * @uml.property name="closeonpoll" 69 */ 70 private String closeonpoll; 20 71 //private String maximumOpenWait; 72 /** 73 * @uml.property name="removablemedia" 74 */ 21 75 private String removablemedia; 76 /** 77 * @uml.property name="randomaccess" 78 */ 22 79 private String randomaccess; 23 private String requiresMount; 24 private String mountPoint; 25 private String mountCommand; 26 private String unmountCommand; 27 private String blockChecksum; 80 /** 81 * @uml.property name="requiresmount" 82 */ 83 private String requiresmount; 84 /** 85 * @uml.property name="mountpoint" 86 */ 87 private String mountpoint; 88 /** 89 * @uml.property name="mountcommand" 90 */ 91 private String mountcommand; 92 /** 93 * @uml.property name="unmountcommand" 94 */ 95 private String unmountcommand; 96 /** 97 * @uml.property name="blockchecksum" 98 */ 99 private String blockchecksum; 100 /** 101 * @uml.property name="minimumblocksize" 102 */ 28 103 private String minimumblocksize; 104 /** 105 * @uml.property name="maximumblocksize" 106 */ 29 107 private String maximumblocksize; 30 private String hardwareEndofMedium; 31 private String fastForwardSpaceFile; 32 private String useMTIOCGET; 33 private String bsfAtEOM; 34 private String twoEOF; 35 private String backwardSpaceRecord; 36 private String backwardSpaceFile; 37 private String forwardSpaceRecord; 38 private String forwardSpaceFile; 39 private String offlineOnUnmount; 40 private String maximumConcurrentJobs; 41 private String maximumVolumeSize; 42 private String maximumFileSize; 43 private String blockPositioning; 44 private String maximumNetworkBufferSize; 45 private String maximumSpoolSize; 46 private String maximumJobSpoolSize; 47 private String spoolDirectory; 48 private String maximumPartSize; 108 /** 109 * @uml.property name="hardwareendofmedium" 110 */ 111 private String hardwareendofmedium; 112 /** 113 * @uml.property name="fastforwardspacefile" 114 */ 115 private String fastforwardspacefile; 116 /** 117 * @uml.property name="usemtiocget" 118 */ 119 private String usemtiocget; 120 /** 121 * @uml.property name="bsfateom" 122 */ 123 private String bsfateom; 124 /** 125 * @uml.property name="twoeof" 126 */ 127 private String twoeof; 128 /** 129 * @uml.property name="backwardspacerecord" 130 */ 131 private String backwardspacerecord; 132 /** 133 * @uml.property name="backwardspacefile" 134 */ 135 private String backwardspacefile; 136 /** 137 * @uml.property name="forwardspacerecord" 138 */ 139 private String forwardspacerecord; 140 /** 141 * @uml.property name="forwardspacefile" 142 */ 143 private String forwardspacefile; 144 /** 145 * @uml.property name="offlineonunmount" 146 */ 147 private String offlineonunmount; 148 /** 149 * @uml.property name="maximumconcurrentjobs" 150 */ 151 private String maximumconcurrentjobs; 152 /** 153 * @uml.property name="maximumvolumesize" 154 */ 155 private String maximumvolumesize; 156 /** 157 * @uml.property name="maximumfilesize" 158 */ 159 private String maximumfilesize; 160 /** 161 * @uml.property name="blockpositioning" 162 */ 163 private String blockpositioning; 164 /** 165 * @uml.property name="maximumnetworkbuffersize" 166 */ 167 private String maximumnetworkbuffersize; 168 /** 169 * @uml.property name="maximumspoolsize" 170 */ 171 private String maximumspoolsize; 172 /** 173 * @uml.property name="maximumjobspoolsize" 174 */ 175 private String maximumjobspoolsize; 176 /** 177 * @uml.property name="spooldirectory" 178 */ 179 private String spooldirectory; 180 /** 181 * @uml.property name="maximumpartsize" 182 */ 183 private String maximumpartsize; 49 184 50 185 public SDDeviceItem(){} 51 186 187 /** 188 * @return 189 * @uml.property name="name" 190 */ 52 191 public String getName() { 53 192 return name; 54 193 } 55 194 195 /** 196 * @param name 197 * @uml.property name="name" 198 */ 56 199 public void setName(String name) { 57 200 this.name = name; 58 201 } 59 202 60 public String getArchiveDevice() { 61 return archiveDevice; 62 } 63 64 public void setArchiveDevice(String archiveDevice) { 65 this.archiveDevice = archiveDevice; 66 } 67 68 public String getDeviceType() { 69 return deviceType; 70 } 71 72 public void setDeviceType(String deviceType) { 73 this.deviceType = deviceType; 74 } 75 76 public String getMediaType() { 77 return mediaType; 78 } 79 80 public void setMediaType(String mediaType) { 81 this.mediaType = mediaType; 82 } 83 203 /** 204 * @return 205 * @uml.property name="archivedevice" 206 */ 207 public String getArchivedevice() { 208 return archivedevice; 209 } 210 211 /** 212 * @param archivedevice 213 * @uml.property name="archivedevice" 214 */ 215 public void setArchivedevice(String archivedevice) { 216 this.archivedevice = archivedevice; 217 } 218 219 /** 220 * @return 221 * @uml.property name="devicetype" 222 */ 223 public String getDevicetype() { 224 return devicetype; 225 } 226 227 /** 228 * @param devicetype 229 * @uml.property name="devicetype" 230 */ 231 public void setDevicetype(String devicetype) { 232 this.devicetype = devicetype; 233 } 234 235 /** 236 * @return 237 * @uml.property name="mediatype" 238 */ 239 public String getMediatype() { 240 return mediatype; 241 } 242 243 /** 244 * @param mediatype 245 * @uml.property name="mediatype" 246 */ 247 public void setMediatype(String mediatype) { 248 this.mediatype = mediatype; 249 } 250 251 /** 252 * @return 253 * @uml.property name="autochanger" 254 */ 84 255 public String getAutochanger() { 85 256 return autochanger; 86 257 } 87 258 259 /** 260 * @param autochanger 261 * @uml.property name="autochanger" 262 */ 88 263 public void setAutochanger(String autochanger) { 89 264 this.autochanger = autochanger; 90 265 } 91 266 92 public String getChangerDevice() { 93 return changerDevice; 94 } 95 96 public void setChangerDevice(String changerDevice) { 97 this.changerDevice = changerDevice; 98 } 99 100 public String getChangerCommand() { 101 return changerCommand; 102 } 103 104 public void setChangerCommand(String changerCommand) { 105 this.changerCommand = changerCommand; 106 } 107 108 public String getAlertCommand() { 109 return alertCommand; 110 } 111 112 public void setAlertCommand(String alertCommand) { 113 this.alertCommand = alertCommand; 114 } 115 116 public String getDriveIndex() { 117 return driveIndex; 118 } 119 120 public void setDriveIndex(String driveIndex) { 121 this.driveIndex = driveIndex; 122 } 123 267 /** 268 * @return 269 * @uml.property name="changerdevice" 270 */ 271 public String getChangerdevice() { 272 return changerdevice; 273 } 274 275 /** 276 * @param changerdevice 277 * @uml.property name="changerdevice" 278 */ 279 public void setChangerdevice(String changerdevice) { 280 this.changerdevice = changerdevice; 281 } 282 283 /** 284 * @return 285 * @uml.property name="changercommand" 286 */ 287 public String getChangercommand() { 288 return changercommand; 289 } 290 291 /** 292 * @param changercommand 293 * @uml.property name="changercommand" 294 */ 295 public void setChangercommand(String changercommand) { 296 this.changercommand = changercommand; 297 } 298 299 /** 300 * @return 301 * @uml.property name="alertcommand" 302 */ 303 public String getAlertcommand() { 304 return alertcommand; 305 } 306 307 /** 308 * @param alertcommand 309 * @uml.property name="alertcommand" 310 */ 311 public void setAlertcommand(String alertcommand) { 312 this.alertcommand = alertcommand; 313 } 314 315 /** 316 * @return 317 * @uml.property name="driveindex" 318 */ 319 public String getDriveindex() { 320 return driveindex; 321 } 322 323 /** 324 * @param driveindex 325 * @uml.property name="driveindex" 326 */ 327 public void setDriveindex(String driveindex) { 328 this.driveindex = driveindex; 329 } 330 331 /** 332 * @return 333 * @uml.property name="autoselect" 334 */ 124 335 public String getAutoselect() { 125 336 return autoselect; 126 337 } 127 338 339 /** 340 * @param autoselect 341 * @uml.property name="autoselect" 342 */ 128 343 public void setAutoselect(String autoselect) { 129 344 this.autoselect = autoselect; 130 345 } 131 346 132 public String getMaximumConcurentJobs() { 133 return maximumConcurentJobs; 134 } 135 136 public void setMaximumConcurentJobs(String maximumConcurentJobs) { 137 this.maximumConcurentJobs = maximumConcurentJobs; 138 } 139 140 public String getMaximumChangerWait() { 141 return maximumChangerWait; 142 } 143 144 public void setMaximumChangerWait(String maximumChangerWait) { 145 this.maximumChangerWait = maximumChangerWait; 146 } 147 148 public String getMaximumRewindWait() { 149 return maximumRewindWait; 150 } 151 152 public void setMaximumRewindWait(String maximumRewindWait) { 153 this.maximumRewindWait = maximumRewindWait; 154 } 155 156 public String getMaximumOpenWait() { 157 return maximumOpenWait; 158 } 159 160 public void setMaximumOpenWait(String maximumOpenWait) { 161 this.maximumOpenWait = maximumOpenWait; 162 } 163 164 public String getAlwaysOpen() { 165 return alwaysOpen; 166 } 167 168 public void setAlwaysOpen(String alwaysOpen) { 169 this.alwaysOpen = alwaysOpen; 170 } 171 172 public String getVolumePollInterval() { 173 return volumePollInterval; 174 } 175 176 public void setVolumePollInterval(String volumePollInterval) { 177 this.volumePollInterval = volumePollInterval; 178 } 179 180 public String getCloseonPoll() { 181 return closeonPoll; 182 } 183 184 public void setCloseonPoll(String closeonPoll) { 185 this.closeonPoll = closeonPoll; 186 } 187 347 /** 348 * @return 349 * @uml.property name="maximumconcurentjobs" 350 */ 351 public String getMaximumconcurentjobs() { 352 return maximumconcurentjobs; 353 } 354 355 /** 356 * @param maximumconcurentjobs 357 * @uml.property name="maximumconcurentjobs" 358 */ 359 public void setMaximumconcurentjobs(String maximumconcurentjobs) { 360 this.maximumconcurentjobs = maximumconcurentjobs; 361 } 362 363 /** 364 * @return 365 * @uml.property name="maximumchangerwait" 366 */ 367 public String getMaximumchangerwait() { 368 return maximumchangerwait; 369 } 370 371 /** 372 * @param maximumchangerwait 373 * @uml.property name="maximumchangerwait" 374 */ 375 public void setMaximumchangerwait(String maximumchangerwait) { 376 this.maximumchangerwait = maximumchangerwait; 377 } 378 379 /** 380 * @return 381 * @uml.property name="maximumrewindwait" 382 */ 383 public String getMaximumrewindwait() { 384 return maximumrewindwait; 385 } 386 387 /** 388 * @param maximumrewindwait 389 * @uml.property name="maximumrewindwait" 390 */ 391 public void setMaximumrewindwait(String maximumrewindwait) { 392 this.maximumrewindwait = maximumrewindwait; 393 } 394 395 /** 396 * @return 397 * @uml.property name="maximumopenwait" 398 */ 399 public String getMaximumopenwait() { 400 return maximumopenwait; 401 } 402 403 /** 404 * @param maximumopenwait 405 * @uml.property name="maximumopenwait" 406 */ 407 public void setMaximumopenwait(String maximumopenwait) { 408 this.maximumopenwait = maximumopenwait; 409 } 410 411 /** 412 * @return 413 * @uml.property name="alwaysopen" 414 */ 415 public String getAlwaysopen() { 416 return alwaysopen; 417 } 418 419 /** 420 * @param alwaysopen 421 * @uml.property name="alwaysopen" 422 */ 423 public void setAlwaysopen(String alwaysopen) { 424 this.alwaysopen = alwaysopen; 425 } 426 427 /** 428 * @return 429 * @uml.property name="volumepollinterval" 430 */ 431 public String getVolumepollinterval() { 432 return volumepollinterval; 433 } 434 435 /** 436 * @param volumepollinterval 437 * @uml.property name="volumepollinterval" 438 */ 439 public void setVolumepollinterval(String volumepollinterval) { 440 this.volumepollinterval = volumepollinterval; 441 } 442 443 /** 444 * @return 445 * @uml.property name="closeonpoll" 446 */ 447 public String getCloseonpoll() { 448 return closeonpoll; 449 } 450 451 /** 452 * @param closeonpoll 453 * @uml.property name="closeonpoll" 454 */ 455 public void setCloseonpoll(String closeonpoll) { 456 this.closeonpoll = closeonpoll; 457 } 458 459 /** 460 * @return 461 * @uml.property name="removablemedia" 462 */ 188 463 public String getRemovablemedia() { 189 464 return removablemedia; 190 465 } 191 466 467 /** 468 * @param removablemedia 469 * @uml.property name="removablemedia" 470 */ 192 471 public void setRemovablemedia(String removablemedia) { 193 472 this.removablemedia = removablemedia; 194 473 } 195 474 475 /** 476 * @return 477 * @uml.property name="randomaccess" 478 */ 196 479 public String getRandomaccess() { 197 480 return randomaccess; 198 481 } 199 482 483 /** 484 * @param randomaccess 485 * @uml.property name="randomaccess" 486 */ 200 487 public void setRandomaccess(String randomaccess) { 201 488 this.randomaccess = randomaccess; 202 489 } 203 490 204 public String getRequiresMount() { 205 return requiresMount; 206 } 207 208 public void setRequiresMount(String requiresMount) { 209 this.requiresMount = requiresMount; 210 } 211 212 public String getMountPoint() { 213 return mountPoint; 214 } 215 216 public void setMountPoint(String mountPoint) { 217 this.mountPoint = mountPoint; 218 } 219 220 public String getMountCommand() { 221 return mountCommand; 222 } 223 224 public void setMountCommand(String mountCommand) { 225 this.mountCommand = mountCommand; 226 } 227 228 public String getUnmountCommand() { 229 return unmountCommand; 230 } 231 232 public void setUnmountCommand(String unmountCommand) { 233 this.unmountCommand = unmountCommand; 234 } 235 236 public String getBlockChecksum() { 237 return blockChecksum; 238 } 239 240 public void setBlockChecksum(String blockChecksum) { 241 this.blockChecksum = blockChecksum; 242 } 243 491 /** 492 * @return 493 * @uml.property name="requiresmount" 494 */ 495 public String getRequiresmount() { 496 return requiresmount; 497 } 498 499 /** 500 * @param requiresmount 501 * @uml.property name="requiresmount" 502 */ 503 public void setRequiresmount(String requiresmount) { 504 this.requiresmount = requiresmount; 505 } 506 507 /** 508 * @return 509 * @uml.property name="mountpoint" 510 */ 511 public String getMountpoint() { 512 return mountpoint; 513 } 514 515 /** 516 * @param mountpoint 517 * @uml.property name="mountpoint" 518 */ 519 public void setMountpoint(String mountpoint) { 520 this.mountpoint = mountpoint; 521 } 522 523 /** 524 * @return 525 * @uml.property name="mountcommand" 526 */ 527 public String getMountcommand() { 528 return mountcommand; 529 } 530 531 /** 532 * @param mountcommand 533 * @uml.property name="mountcommand" 534 */ 535 public void setMountcommand(String mountcommand) { 536 this.mountcommand = mountcommand; 537 } 538 539 /** 540 * @return 541 * @uml.property name="unmountcommand" 542 */ 543 public String getUnmountcommand() { 544 return unmountcommand; 545 } 546 547 /** 548 * @param unmountcommand 549 * @uml.property name="unmountcommand" 550 */ 551 public void setUnmountcommand(String unmountcommand) { 552 this.unmountcommand = unmountcommand; 553 } 554 555 /** 556 * @return 557 * @uml.property name="blockchecksum" 558 */ 559 public String getBlockchecksum() { 560 return blockchecksum; 561 } 562 563 /** 564 * @param blockchecksum 565 * @uml.property name="blockchecksum" 566 */ 567 public void setBlockchecksum(String blockchecksum) { 568 this.blockchecksum = blockchecksum; 569 } 570 571 /** 572 * @return 573 * @uml.property name="minimumblocksize" 574 */ 244 575 public String getMinimumblocksize() { 245 576 return minimumblocksize; 246 577 } 247 578 579 /** 580 * @param minimumblocksize 581 * @uml.property name="minimumblocksize" 582 */ 248 583 public void setMinimumblocksize(String minimumblocksize) { 249 584 this.minimumblocksize = minimumblocksize; 250 585 } 251 586 587 /** 588 * @return 589 * @uml.property name="maximumblocksize" 590 */ 252 591 public String getMaximumblocksize() { 253 592 return maximumblocksize; 254 593 } 255 594 595 /** 596 * @param maximumblocksize 597 * @uml.property name="maximumblocksize" 598 */ 256 599 public void setMaximumblocksize(String maximumblocksize) { 257 600 this.maximumblocksize = maximumblocksize; 258 601 } 259 602 260 public String getHardwareEndofMedium() { 261 return hardwareEndofMedium; 262 } 263 264 public void setHardwareEndofMedium(String hardwareEndofMedium) { 265 this.hardwareEndofMedium = hardwareEndofMedium; 266 } 267 268 public String getFastForwardSpaceFile() { 269 return fastForwardSpaceFile; 270 } 271 272 public void setFastForwardSpaceFile(String fastForwardSpaceFile) { 273 this.fastForwardSpaceFile = fastForwardSpaceFile; 274 } 275 276 public String getUseMTIOCGET() { 277 return useMTIOCGET; 278 } 279 280 public void setUseMTIOCGET(String useMTIOCGET) { 281 this.useMTIOCGET = useMTIOCGET; 282 } 283 284 public String getBsfAtEOM() { 285 return bsfAtEOM; 286 } 287 288 public void setBsfAtEOM(String bsfAtEOM) { 289 this.bsfAtEOM = bsfAtEOM; 290 } 291 292 public String getTwoEOF() { 293 return twoEOF; 294 } 295 296 public void setTwoEOF(String twoEOF) { 297 this.twoEOF = twoEOF; 298 } 299 300 public String getBackwardSpaceRecord() { 301 return backwardSpaceRecord; 302 } 303 304 public void setBackwardSpaceRecord(String backwardSpaceRecord) { 305 this.backwardSpaceRecord = backwardSpaceRecord; 306 } 307 308 public String getBackwardSpaceFile() { 309 return backwardSpaceFile; 310 } 311 312 public void setBackwardSpaceFile(String backwardSpaceFile) { 313 this.backwardSpaceFile = backwardSpaceFile; 314 } 315 316 public String getForwardSpaceRecord() { 317 return forwardSpaceRecord; 318 } 319 320 public void setForwardSpaceRecord(String forwardSpaceRecord) { 321 this.forwardSpaceRecord = forwardSpaceRecord; 322 } 323 324 public String getForwardSpaceFile() { 325 return forwardSpaceFile; 326 } 327 328 public void setForwardSpaceFile(String forwardSpaceFile) { 329 this.forwardSpaceFile = forwardSpaceFile; 330 } 331 332 public String getOfflineOnUnmount() { 333 return offlineOnUnmount; 334 } 335 336 public void setOfflineOnUnmount(String offlineOnUnmount) { 337 this.offlineOnUnmount = offlineOnUnmount; 338 } 339 340 public String getMaximumConcurrentJobs() { 341 return maximumConcurrentJobs; 342 } 343 344 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 345 this.maximumConcurrentJobs = maximumConcurrentJobs; 346 } 347 348 public String getMaximumVolumeSize() { 349 return maximumVolumeSize; 350 } 351 352 public void setMaximumVolumeSize(String maximumVolumeSize) { 353 this.maximumVolumeSize = maximumVolumeSize; 354 } 355 356 public String getMaximumFileSize() { 357 return maximumFileSize; 358 } 359 360 public void setMaximumFileSize(String maximumFileSize) { 361 this.maximumFileSize = maximumFileSize; 362 } 363 364 public String getBlockPositioning() { 365 return blockPositioning; 366 } 367 368 public void setBlockPositioning(String blockPositioning) { 369 this.blockPositioning = blockPositioning; 370 } 371 372 public String getMaximumNetworkBufferSize() { 373 return maximumNetworkBufferSize; 374 } 375 376 public void setMaximumNetworkBufferSize(String maximumNetworkBufferSize) { 377 this.maximumNetworkBufferSize = maximumNetworkBufferSize; 378 } 379 380 public String getMaximumSpoolSize() { 381 return maximumSpoolSize; 382 } 383 384 public void setMaximumSpoolSize(String maximumSpoolSize) { 385 this.maximumSpoolSize = maximumSpoolSize; 386 } 387 388 public String getMaximumJobSpoolSize() { 389 return maximumJobSpoolSize; 390 } 391 392 public void setMaximumJobSpoolSize(String maximumJobSpoolSize) { 393 this.maximumJobSpoolSize = maximumJobSpoolSize; 394 } 395 396 public String getSpoolDirectory() { 397 return spoolDirectory; 398 } 399 400 public void setSpoolDirectory(String spoolDirectory) { 401 this.spoolDirectory = spoolDirectory; 402 } 403 404 public String getMaximumPartSize() { 405 return maximumPartSize; 406 } 407 408 public void setMaximumPartSize(String maximumPartSize) { 409 this.maximumPartSize = maximumPartSize; 410 } 603 /** 604 * @return 605 * @uml.property name="hardwareendofmedium" 606 */ 607 public String getHardwareendofmedium() { 608 return hardwareendofmedium; 609 } 610 611 /** 612 * @param hardwareendofmedium 613 * @uml.property name="hardwareendofmedium" 614 */ 615 public void setHardwareendofmedium(String hardwareendofmedium) { 616 this.hardwareendofmedium = hardwareendofmedium; 617 } 618 619 /** 620 * @return 621 * @uml.property name="fastforwardspacefile" 622 */ 623 public String getFastforwardspacefile() { 624 return fastforwardspacefile; 625 } 626 627 /** 628 * @param fastforwardspacefile 629 * @uml.property name="fastforwardspacefile" 630 */ 631 public void setFastforwardspacefile(String fastforwardspacefile) { 632 this.fastforwardspacefile = fastforwardspacefile; 633 } 634 635 /** 636 * @return 637 * @uml.property name="usemtiocget" 638 */ 639 public String getUsemtiocget() { 640 return usemtiocget; 641 } 642 643 /** 644 * @param usemtiocget 645 * @uml.property name="usemtiocget" 646 */ 647 public void setUsemtiocget(String usemtiocget) { 648 this.usemtiocget = usemtiocget; 649 } 650 651 /** 652 * @return 653 * @uml.property name="bsfateom" 654 */ 655 public String getBsfateom() { 656 return bsfateom; 657 } 658 659 /** 660 * @param bsfateom 661 * @uml.property name="bsfateom" 662 */ 663 public void setBsfateom(String bsfateom) { 664 this.bsfateom = bsfateom; 665 } 666 667 /** 668 * @return 669 * @uml.property name="twoeof" 670 */ 671 public String getTwoeof() { 672 return twoeof; 673 } 674 675 /** 676 * @param twoeof 677 * @uml.property name="twoeof" 678 */ 679 public void setTwoeof(String twoeof) { 680 this.twoeof = twoeof; 681 } 682 683 /** 684 * @return 685 * @uml.property name="backwardspacerecord" 686 */ 687 public String getBackwardspacerecord() { 688 return backwardspacerecord; 689 } 690 691 /** 692 * @param backwardspacerecord 693 * @uml.property name="backwardspacerecord" 694 */ 695 public void setBackwardspacerecord(String backwardspacerecord) { 696 this.backwardspacerecord = backwardspacerecord; 697 } 698 699 /** 700 * @return 701 * @uml.property name="backwardspacefile" 702 */ 703 public String getBackwardspacefile() { 704 return backwardspacefile; 705 } 706 707 /** 708 * @param backwardspacefile 709 * @uml.property name="backwardspacefile" 710 */ 711 public void setBackwardspacefile(String backwardspacefile) { 712 this.backwardspacefile = backwardspacefile; 713 } 714 715 /** 716 * @return 717 * @uml.property name="forwardspacerecord" 718 */ 719 public String getForwardspacerecord() { 720 return forwardspacerecord; 721 } 722 723 /** 724 * @param forwardspacerecord 725 * @uml.property name="forwardspacerecord" 726 */ 727 public void setForwardspacerecord(String forwardspacerecord) { 728 this.forwardspacerecord = forwardspacerecord; 729 } 730 731 /** 732 * @return 733 * @uml.property name="forwardspacefile" 734 */ 735 public String getForwardspacefile() { 736 return forwardspacefile; 737 } 738 739 /** 740 * @param forwardspacefile 741 * @uml.property name="forwardspacefile" 742 */ 743 public void setForwardspacefile(String forwardspacefile) { 744 this.forwardspacefile = forwardspacefile; 745 } 746 747 /** 748 * @return 749 * @uml.property name="offlineonunmount" 750 */ 751 public String getOfflineonunmount() { 752 return offlineonunmount; 753 } 754 755 /** 756 * @param offlineonunmount 757 * @uml.property name="offlineonunmount" 758 */ 759 public void setOfflineonunmount(String offlineonunmount) { 760 this.offlineonunmount = offlineonunmount; 761 } 762 763 /** 764 * @return 765 * @uml.property name="maximumconcurrentjobs" 766 */ 767 public String getMaximumconcurrentjobs() { 768 return maximumconcurrentjobs; 769 } 770 771 /** 772 * @param maximumconcurrentjobs 773 * @uml.property name="maximumconcurrentjobs" 774 */ 775 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 776 this.maximumconcurrentjobs = maximumconcurrentjobs; 777 } 778 779 /** 780 * @return 781 * @uml.property name="maximumvolumesize" 782 */ 783 public String getMaximumvolumesize() { 784 return maximumvolumesize; 785 } 786 787 /** 788 * @param maximumvolumesize 789 * @uml.property name="maximumvolumesize" 790 */ 791 public void setMaximumvolumesize(String maximumvolumesize) { 792 this.maximumvolumesize = maximumvolumesize; 793 } 794 795 /** 796 * @return 797 * @uml.property name="maximumfilesize" 798 */ 799 public String getMaximumfilesize() { 800 return maximumfilesize; 801 } 802 803 /** 804 * @param maximumfilesize 805 * @uml.property name="maximumfilesize" 806 */ 807 public void setMaximumfilesize(String maximumfilesize) { 808 this.maximumfilesize = maximumfilesize; 809 } 810 811 /** 812 * @return 813 * @uml.property name="blockpositioning" 814 */ 815 public String getBlockpositioning() { 816 return blockpositioning; 817 } 818 819 /** 820 * @param blockpositioning 821 * @uml.property name="blockpositioning" 822 */ 823 public void setBlockpositioning(String blockpositioning) { 824 this.blockpositioning = blockpositioning; 825 } 826 827 /** 828 * @return 829 * @uml.property name="maximumnetworkbuffersize" 830 */ 831 public String getMaximumnetworkbuffersize() { 832 return maximumnetworkbuffersize; 833 } 834 835 /** 836 * @param maximumnetworkbuffersize 837 * @uml.property name="maximumnetworkbuffersize" 838 */ 839 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) { 840 this.maximumnetworkbuffersize = maximumnetworkbuffersize; 841 } 842 843 /** 844 * @return 845 * @uml.property name="maximumspoolsize" 846 */ 847 public String getMaximumspoolsize() { 848 return maximumspoolsize; 849 } 850 851 /** 852 * @param maximumspoolsize 853 * @uml.property name="maximumspoolsize" 854 */ 855 public void setMaximumspoolsize(String maximumspoolsize) { 856 this.maximumspoolsize = maximumspoolsize; 857 } 858 859 /** 860 * @return 861 * @uml.property name="maximumjobspoolsize" 862 */ 863 public String getMaximumjobspoolsize() { 864 return maximumjobspoolsize; 865 } 866 867 /** 868 * @param maximumjobspoolsize 869 * @uml.property name="maximumjobspoolsize" 870 */ 871 public void setMaximumjobspoolsize(String maximumjobspoolsize) { 872 this.maximumjobspoolsize = maximumjobspoolsize; 873 } 874 875 /** 876 * @return 877 * @uml.property name="spooldirectory" 878 */ 879 public String getSpooldirectory() { 880 return spooldirectory; 881 } 882 883 /** 884 * @param spooldirectory 885 * @uml.property name="spooldirectory" 886 */ 887 public void setSpooldirectory(String spooldirectory) { 888 this.spooldirectory = spooldirectory; 889 } 890 891 /** 892 * @return 893 * @uml.property name="maximumpartsize" 894 */ 895 public String getMaximumpartsize() { 896 return maximumpartsize; 897 } 898 899 /** 900 * @param maximumpartsize 901 * @uml.property name="maximumpartsize" 902 */ 903 public void setMaximumpartsize(String maximumpartsize) { 904 this.maximumpartsize = maximumpartsize; 905 } 906 411 907 412 908 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDStorageItem.java
r844 r858 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 */ 3 6 private String name; 4 private String workingDirectory; 5 private String pidDirectory; 6 private String heartbeatInterval; 7 private String clientConnectWait; 8 private String maximumConcurrentJobs; 9 private String sdAddresses; 10 private String sdPort; 11 private String sdAddress; 7 /** 8 * @uml.property name="workingdirectory" 9 */ 10 private String workingdirectory; 11 /** 12 * @uml.property name="piddirectory" 13 */ 14 private String piddirectory; 15 /** 16 * @uml.property name="heartbeatinterval" 17 */ 18 private String heartbeatinterval; 19 /** 20 * @uml.property name="clientconnectwait" 21 */ 22 private String clientconnectwait; 23 /** 24 * @uml.property name="maximumconcurrentjobs" 25 */ 26 private String maximumconcurrentjobs; 27 /** 28 * @uml.property name="sdaddresses" 29 */ 30 private String sdaddresses; 31 /** 32 * @uml.property name="sdport" 33 */ 34 private String sdport; 35 /** 36 * @uml.property name="sdaddress" 37 */ 38 private String sdaddress; 12 39 13 40 public SDStorageItem() {} 14 41 public SDStorageItem(String name, String workingDirectory, String pidDirectory) { 15 42 setName(name); 16 setWorking Directory(workingDirectory);17 setPid Directory(pidDirectory);43 setWorkingdirectory(workingdirectory); 44 setPiddirectory(piddirectory); 18 45 } 46 /** 47 * @return 48 * @uml.property name="name" 49 */ 19 50 public String getName() { 20 51 return name; 21 52 } 53 /** 54 * @param name 55 * @uml.property name="name" 56 */ 22 57 public void setName(String name) { 23 58 this.name = name; 24 59 } 25 public String getWorkingDirectory() { 26 return workingDirectory; 60 /** 61 * @return 62 * @uml.property name="workingdirectory" 63 */ 64 public String getWorkingdirectory() { 65 return workingdirectory; 27 66 } 28 public void setWorkingDirectory(String workingDirectory) { 29 this.workingDirectory = workingDirectory; 67 /** 68 * @param workingdirectory 69 * @uml.property name="workingdirectory" 70 */ 71 public void setWorkingdirectory(String workingdirectory) { 72 this.workingdirectory = workingdirectory; 30 73 } 31 public String getPidDirectory() { 32 return pidDirectory; 74 /** 75 * @return 76 * @uml.property name="piddirectory" 77 */ 78 public String getPiddirectory() { 79 return piddirectory; 33 80 } 34 public void setPidDirectory(String pidDirectory) { 35 this.pidDirectory = pidDirectory; 81 /** 82 * @param piddirectory 83 * @uml.property name="piddirectory" 84 */ 85 public void setPiddirectory(String piddirectory) { 86 this.piddirectory = piddirectory; 36 87 } 37 public String getHeartbeatInterval() { 38 return heartbeatInterval; 88 /** 89 * @return 90 * @uml.property name="heartbeatinterval" 91 */ 92 public String getHeartbeatinterval() { 93 return heartbeatinterval; 39 94 } 40 public void setHeartbeatInterval(String heartbeatInterval) { 41 this.heartbeatInterval = heartbeatInterval; 95 /** 96 * @param heartbeatinterval 97 * @uml.property name="heartbeatinterval" 98 */ 99 public void setHeartbeatinterval(String heartbeatinterval) { 100 this.heartbeatinterval = heartbeatinterval; 42 101 } 43 public String getClientConnectWait() { 44 return clientConnectWait; 102 /** 103 * @return 104 * @uml.property name="clientconnectwait" 105 */ 106 public String getClientconnectwait() { 107 return clientconnectwait; 45 108 } 46 public void setClientConnectWait(String clientConnectWait) { 47 this.clientConnectWait = clientConnectWait; 109 /** 110 * @param clientconnectwait 111 * @uml.property name="clientconnectwait" 112 */ 113 public void setClientconnectwait(String clientconnectwait) { 114 this.clientconnectwait = clientconnectwait; 48 115 } 49 public String getMaximumConcurrentJobs() { 50 return maximumConcurrentJobs; 116 /** 117 * @return 118 * @uml.property name="maximumconcurrentjobs" 119 */ 120 public String getMaximumconcurrentjobs() { 121 return maximumconcurrentjobs; 51 122 } 52 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 53 this.maximumConcurrentJobs = maximumConcurrentJobs; 123 /** 124 * @param maximumconcurrentjobs 125 * @uml.property name="maximumconcurrentjobs" 126 */ 127 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 128 this.maximumconcurrentjobs = maximumconcurrentjobs; 54 129 } 55 public String getSdAddresses() { 56 return sdAddresses; 130 /** 131 * @return 132 * @uml.property name="sdaddresses" 133 */ 134 public String getSdaddresses() { 135 return sdaddresses; 57 136 } 58 public void setSdAddresses(String sdAddresses) { 59 this.sdAddresses = sdAddresses; 137 /** 138 * @param sdaddresses 139 * @uml.property name="sdaddresses" 140 */ 141 public void setSdaddresses(String sdaddresses) { 142 this.sdaddresses = sdaddresses; 60 143 } 61 public String getSdPort() { 62 return sdPort; 144 /** 145 * @return 146 * @uml.property name="sdport" 147 */ 148 public String getSdport() { 149 return sdport; 63 150 } 64 public void setSdPort(String sdPort) { 65 this.sdPort = sdPort; 151 /** 152 * @param sdport 153 * @uml.property name="sdport" 154 */ 155 public void setSdport(String sdport) { 156 this.sdport = sdport; 66 157 } 67 public String getSdAddress() { 68 return sdAddress; 158 /** 159 * @return 160 * @uml.property name="sdaddress" 161 */ 162 public String getSdaddress() { 163 return sdaddress; 69 164 } 70 public void setSdAddress(String sdAddress) { 71 this.sdAddress = sdAddress; 165 /** 166 * @param sdaddress 167 * @uml.property name="sdaddress" 168 */ 169 public void setSdaddress(String sdaddress) { 170 this.sdaddress = sdaddress; 72 171 } 172 73 173 74 174 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ScheduleItem.java
r844 r858 2 2 public class ScheduleItem extends ItemType implements UserObjectItem{ 3 3 4 /** 5 * @uml.property name="name" 6 */ 4 7 private String name; 8 /** 9 * @uml.property name="run" 10 */ 5 11 private String run; 6 12 … … 11 17 setRun(run); 12 18 } 19 /** 20 * @return 21 * @uml.property name="name" 22 */ 13 23 public String getName() { 14 24 return name; 15 25 } 16 26 27 /** 28 * @param name 29 * @uml.property name="name" 30 */ 17 31 public void setName(String name) { 18 32 this.name = name; 19 33 } 20 34 35 /** 36 * @return 37 * @uml.property name="run" 38 */ 21 39 public String getRun() { 22 40 return run; 23 41 } 24 42 43 /** 44 * @param run 45 * @uml.property name="run" 46 */ 25 47 public void setRun(String run) { 26 48 this.run = run; -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/StorageItem.java
r844 r858 2 2 public class StorageItem extends ItemType implements UserObjectItem{ 3 3 4 /** 5 * @uml.property name="name" 6 */ 4 7 private String name; 8 /** 9 * @uml.property name="address" 10 */ 5 11 private String address; 6 private String sdPort; 12 /** 13 * @uml.property name="sdport" 14 */ 15 private String sdport; 16 /** 17 * @uml.property name="password" 18 */ 7 19 private String password; 20 /** 21 * @uml.property name="device" 22 */ 8 23 private String device; 9 private String mediaType; 24 /** 25 * @uml.property name="mediatype" 26 */ 27 private String mediatype; 28 /** 29 * @uml.property name="autochanger" 30 */ 10 31 private String autochanger; 11 private String maximumConcurrentJobs; 12 private String allowCompression; 13 private String heartbeatInterval; 32 /** 33 * @uml.property name="maximumconcurrentjobs" 34 */ 35 private String maximumconcurrentjobs; 36 /** 37 * @uml.property name="allowcompression" 38 */ 39 private String allowcompression; 40 /** 41 * @uml.property name="heartbeatinterval" 42 */ 43 private String heartbeatinterval; 14 44 15 45 public StorageItem() {} 16 46 47 /** 48 * @return 49 * @uml.property name="name" 50 */ 17 51 public String getName() { 18 52 return name; 19 53 } 20 54 55 /** 56 * @param name 57 * @uml.property name="name" 58 */ 21 59 public void setName(String name) { 22 60 this.name = name; 23 61 } 24 62 63 /** 64 * @return 65 * @uml.property name="address" 66 */ 25 67 public String getAddress() { 26 68 return address; 27 69 } 28 70 71 /** 72 * @param address 73 * @uml.property name="address" 74 */ 29 75 public void setAddress(String address) { 30 76 this.address = address; 31 77 } 32 78 33 public String getSdPort() { 34 return sdPort; 35 } 36 37 public void setSdPort(String sdPort) { 38 this.sdPort = sdPort; 39 } 40 79 /** 80 * @return 81 * @uml.property name="sdport" 82 */ 83 public String getSdport() { 84 return sdport; 85 } 86 87 /** 88 * @param sdport 89 * @uml.property name="sdport" 90 */ 91 public void setSdport(String sdport) { 92 this.sdport = sdport; 93 } 94 95 /** 96 * @return 97 * @uml.property name="password" 98 */ 41 99 public String getPassword() { 42 100 return password; 43 101 } 44 102 103 /** 104 * @param password 105 * @uml.property name="password" 106 */ 45 107 public void setPassword(String password) { 46 108 this.password = password; 47 109 } 48 110 111 /** 112 * @return 113 * @uml.property name="device" 114 */ 49 115 public String getDevice() { 50 116 return device; 51 117 } 52 118 119 /** 120 * @param device 121 * @uml.property name="device" 122 */ 53 123 public void setDevice(String device) { 54 124 this.device = device; 55 125 } 56 126 57 public String getMediaType() { 58 return mediaType; 59 } 60 61 public void setMediaType(String mediaType) { 62 this.mediaType = mediaType; 63 } 64 127 /** 128 * @return 129 * @uml.property name="mediatype" 130 */ 131 public String getMediatype() { 132 return mediatype; 133 } 134 135 /** 136 * @param mediatype 137 * @uml.property name="mediatype" 138 */ 139 public void setMediatype(String mediatype) { 140 this.mediatype = mediatype; 141 } 142 143 /** 144 * @return 145 * @uml.property name="autochanger" 146 */ 65 147 public String getAutochanger() { 66 148 return autochanger; 67 149 } 68 150 151 /** 152 * @param autochanger 153 * @uml.property name="autochanger" 154 */ 69 155 public void setAutochanger(String autochanger) { 70 156 this.autochanger = autochanger; 71 157 } 72 158 73 public String getMaximumConcurrentJobs() { 74 return maximumConcurrentJobs; 75 } 76 77 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) { 78 this.maximumConcurrentJobs = maximumConcurrentJobs; 79 } 80 81 public String getAllowCompression() { 82 return allowCompression; 83 } 84 85 public void setAllowCompression(String allowCompression) { 86 this.allowCompression = allowCompression; 87 } 88 89 public String getHeartbeatInterval() { 90 return heartbeatInterval; 91 } 92 93 public void setHeartbeatInterval(String heartbeatInterval) { 94 this.heartbeatInterval = heartbeatInterval; 95 } 159 /** 160 * @return 161 * @uml.property name="maximumconcurrentjobs" 162 */ 163 public String getMaximumconcurrentjobs() { 164 return maximumconcurrentjobs; 165 } 166 167 /** 168 * @param maximumconcurrentjobs 169 * @uml.property name="maximumconcurrentjobs" 170 */ 171 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) { 172 this.maximumconcurrentjobs = maximumconcurrentjobs; 173 } 174 175 /** 176 * @return 177 * @uml.property name="allowcompression" 178 */ 179 public String getAllowcompression() { 180 return allowcompression; 181 } 182 183 /** 184 * @param allowcompression 185 * @uml.property name="allowcompression" 186 */ 187 public void setAllowcompression(String allowcompression) { 188 this.allowcompression = allowcompression; 189 } 190 191 /** 192 * @return 193 * @uml.property name="heartbeatinterval" 194 */ 195 public String getHeartbeatinterval() { 196 return heartbeatinterval; 197 } 198 199 /** 200 * @param heartbeatinterval 201 * @uml.property name="heartbeatinterval" 202 */ 203 public void setHeartbeatinterval(String heartbeatinterval) { 204 this.heartbeatinterval = heartbeatinterval; 205 } 206 207 96 208 97 209 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/UserObjectItem.java
r844 r858 3 3 * Interface to be implemented by *Item classes for different resource type 4 4 */ 5 /** 6 * @author tgoecke 7 */ 5 8 public interface UserObjectItem { 6 9 10 /** 11 * @uml.property name="resType" 12 */ 7 13 public String getResType(); 14 /** 15 * @param ResType 16 * @uml.property name="resType" 17 */ 8 18 public void setResType(String ResType); 9 19 } -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/UserObjectItemType.java
r854 r858 5 5 6 6 public class UserObjectItemType extends IceUserObject { 7 7 8 private UserObjectItem userObject; 9 private boolean selected; 10 8 11 public UserObjectItemType(DefaultMutableTreeNode defaultMutableTreeNode){ 9 12 super(defaultMutableTreeNode); … … 13 16 setLeaf(true); 14 17 setExpanded(false); 15 18 setSelected(false); 16 19 } 20 17 21 public UserObjectItem getUserObject(){ 18 22 return userObject; 19 23 } 20 public void setUserObject Item(UserObjectItem userObject){24 public void setUserObject(UserObjectItem userObject){ 21 25 this.userObject = userObject; 26 } 27 public boolean getSelected(){ 28 return selected; 29 } 30 public void setSelected(boolean selected){ 31 this.selected = selected; 32 } 33 public void switchSelected(){ 34 setSelected(!selected); 22 35 } 23 36 -
vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/messages_en.properties
r857 r858 1 storagedaemon.storagedaemon.name.ref = 0 2 storagedaemon.storagedaemon.name.type = String 3 storagedaemon.storagedaemon.name.required = false 4 storagedaemon.storagedaemon.name.def = 0 5 storagedaemon.storagedaemon.description.ref = 0 6 storagedaemon.storagedaemon.description.type = String 7 storagedaemon.storagedaemon.description.required = false 8 storagedaemon.storagedaemon.description.def = 0 9 storagedaemon.storagedaemon.sdaddress.ref = 0 10 storagedaemon.storagedaemon.sdaddress.type = store_addresses_address 11 storagedaemon.storagedaemon.sdaddress.required = false 12 storagedaemon.storagedaemon.sdaddress.def = 9103 13 storagedaemon.storagedaemon.sdaddresses.ref = 0 14 storagedaemon.storagedaemon.sdaddresses.type = store_addresses 15 storagedaemon.storagedaemon.sdaddresses.required = false 16 storagedaemon.storagedaemon.sdaddresses.def = 9103 17 storagedaemon.storagedaemon.messages.ref = R_MSGS 18 storagedaemon.storagedaemon.messages.type = Resource 19 storagedaemon.storagedaemon.messages.required = false 20 storagedaemon.storagedaemon.messages.def = 0 21 storagedaemon.storagedaemon.sdport.ref = 0 22 storagedaemon.storagedaemon.sdport.type = store_addresses_port 23 storagedaemon.storagedaemon.sdport.required = false 24 storagedaemon.storagedaemon.sdport.def = 9103 25 storagedaemon.storagedaemon.workingdirectory.ref = 0 26 storagedaemon.storagedaemon.workingdirectory.type = path 27 storagedaemon.storagedaemon.workingdirectory.required = false 28 storagedaemon.storagedaemon.workingdirectory.def = 0 29 storagedaemon.storagedaemon.piddirectory.ref = 0 30 storagedaemon.storagedaemon.piddirectory.type = path 31 storagedaemon.storagedaemon.piddirectory.required = false 32 storagedaemon.storagedaemon.piddirectory.def = 0 33 storagedaemon.storagedaemon.subsysdirectory.ref = 0 34 storagedaemon.storagedaemon.subsysdirectory.type = path 35 storagedaemon.storagedaemon.subsysdirectory.required = false 36 storagedaemon.storagedaemon.subsysdirectory.def = 0 37 storagedaemon.storagedaemon.plugindirectory.ref = 0 38 storagedaemon.storagedaemon.plugindirectory.type = path 39 storagedaemon.storagedaemon.plugindirectory.required = false 40 storagedaemon.storagedaemon.plugindirectory.def = 0 41 storagedaemon.storagedaemon.scriptsdirectory.ref = 0 42 storagedaemon.storagedaemon.scriptsdirectory.type = path 43 storagedaemon.storagedaemon.scriptsdirectory.required = false 44 storagedaemon.storagedaemon.scriptsdirectory.def = 0 45 storagedaemon.storagedaemon.maximumconcurrentjobs.ref = 0 46 storagedaemon.storagedaemon.maximumconcurrentjobs.type = int 47 storagedaemon.storagedaemon.maximumconcurrentjobs.required = false 48 storagedaemon.storagedaemon.maximumconcurrentjobs.def = 20 49 storagedaemon.storagedaemon.heartbeatinterval.ref = 0 50 storagedaemon.storagedaemon.heartbeatinterval.type = Date 51 storagedaemon.storagedaemon.heartbeatinterval.required = false 52 storagedaemon.storagedaemon.heartbeatinterval.def = 0 53 storagedaemon.storagedaemon.tlsauthenticate.ref = 0 54 storagedaemon.storagedaemon.tlsauthenticate.type = store_bool 55 storagedaemon.storagedaemon.tlsauthenticate.required = false 56 storagedaemon.storagedaemon.tlsauthenticate.def = 0 57 storagedaemon.storagedaemon.tlsenable.ref = 0 58 storagedaemon.storagedaemon.tlsenable.type = store_bool 59 storagedaemon.storagedaemon.tlsenable.required = false 60 storagedaemon.storagedaemon.tlsenable.def = 0 61 storagedaemon.storagedaemon.tlsrequire.ref = 0 62 storagedaemon.storagedaemon.tlsrequire.type = store_bool 63 storagedaemon.storagedaemon.tlsrequire.required = false 64 storagedaemon.storagedaemon.tlsrequire.def = 0 65 storagedaemon.storagedaemon.tlsverifypeer.ref = 1 66 storagedaemon.storagedaemon.tlsverifypeer.type = store_bool 67 storagedaemon.storagedaemon.tlsverifypeer.required = false 68 storagedaemon.storagedaemon.tlsverifypeer.def = 1 69 storagedaemon.storagedaemon.tlscacertificatefile.ref = 0 70 storagedaemon.storagedaemon.tlscacertificatefile.type = path 71 storagedaemon.storagedaemon.tlscacertificatefile.required = false 72 storagedaemon.storagedaemon.tlscacertificatefile.def = 0 73 storagedaemon.storagedaemon.tlscacertificatedir.ref = 0 74 storagedaemon.storagedaemon.tlscacertificatedir.type = path 75 storagedaemon.storagedaemon.tlscacertificatedir.required = false 76 storagedaemon.storagedaemon.tlscacertificatedir.def = 0 77 storagedaemon.storagedaemon.tlscertificate.ref = 0 78 storagedaemon.storagedaemon.tlscertificate.type = path 79 storagedaemon.storagedaemon.tlscertificate.required = false 80 storagedaemon.storagedaemon.tlscertificate.def = 0 81 storagedaemon.storagedaemon.tlskey.ref = 0 82 storagedaemon.storagedaemon.tlskey.type = path 83 storagedaemon.storagedaemon.tlskey.required = false 84 storagedaemon.storagedaemon.tlskey.def = 0 85 storagedaemon.storagedaemon.tlsdhfile.ref = 0 86 storagedaemon.storagedaemon.tlsdhfile.type = path 87 storagedaemon.storagedaemon.tlsdhfile.required = false 88 storagedaemon.storagedaemon.tlsdhfile.def = 0 89 storagedaemon.storagedaemon.tlsallowedcn.ref = 0 90 storagedaemon.storagedaemon.tlsallowedcn.type = store_alist_str 91 storagedaemon.storagedaemon.tlsallowedcn.required = false 92 storagedaemon.storagedaemon.tlsallowedcn.def = 0 93 storagedaemon.storagedaemon.clientconnectwait.ref = 0 94 storagedaemon.storagedaemon.clientconnectwait.type = Date 95 storagedaemon.storagedaemon.clientconnectwait.required = false 96 storagedaemon.storagedaemon.clientconnectwait.def = 30 * 60 97 storagedaemon.storagedaemon.verid.ref = 0 98 storagedaemon.storagedaemon.verid.type = String 99 storagedaemon.storagedaemon.verid.required = false 100 storagedaemon.storagedaemon.verid.def = 0 1 director.director.name.ref = 0 2 director.director.name.type = String 3 director.director.name.required = true 4 director.director.name.def = 0 5 director.director.description.ref = 0 6 director.director.description.type = String 7 director.director.description.required = false 8 director.director.description.def = 0 9 director.director.messages.ref = R_MSGS 10 director.director.messages.type = Resource 11 director.director.messages.required = false 12 director.director.messages.def = 0 13 director.director.dirport.ref = 0 14 director.director.dirport.type = store_addresses_port 15 director.director.dirport.required = false 16 director.director.dirport.def = 9101 17 director.director.diraddress.ref = 0 18 director.director.diraddress.type = store_addresses_address 19 director.director.diraddress.required = false 20 director.director.diraddress.def = 9101 21 director.director.diraddresses.ref = 0 22 director.director.diraddresses.type = store_addresses 23 director.director.diraddresses.required = false 24 director.director.diraddresses.def = 9101 25 director.director.dirsourceaddress.ref = 0 26 director.director.dirsourceaddress.type = store_addresses_address 27 director.director.dirsourceaddress.required = false 28 director.director.dirsourceaddress.def = 0 29 director.director.queryfile.ref = 0 30 director.director.queryfile.type = path 31 director.director.queryfile.required = true 32 director.director.queryfile.def = 0 33 director.director.workingdirectory.ref = 0 34 director.director.workingdirectory.type = path 35 director.director.workingdirectory.required = true 36 director.director.workingdirectory.def = 0 37 director.director.plugindirectory.ref = 0 38 director.director.plugindirectory.type = path 39 director.director.plugindirectory.required = false 40 director.director.plugindirectory.def = 0 41 director.director.scriptsdirectory.ref = 0 42 director.director.scriptsdirectory.type = path 43 director.director.scriptsdirectory.required = false 44 director.director.scriptsdirectory.def = 0 45 director.director.piddirectory.ref = 0 46 director.director.piddirectory.type = path 47 director.director.piddirectory.required = true 48 director.director.piddirectory.def = 0 49 director.director.subsysdirectory.ref = 0 50 director.director.subsysdirectory.type = path 51 director.director.subsysdirectory.required = false 52 director.director.subsysdirectory.def = 0 53 director.director.maximumconcurrentjobs.ref = 0 54 director.director.maximumconcurrentjobs.type = int 55 director.director.maximumconcurrentjobs.required = false 56 director.director.maximumconcurrentjobs.def = 1 57 director.director.maximumconsoleconnections.ref = 0 58 director.director.maximumconsoleconnections.type = int 59 director.director.maximumconsoleconnections.required = false 60 director.director.maximumconsoleconnections.def = 20 61 director.director.password.ref = 0 62 director.director.password.type = Password 63 director.director.password.required = true 64 director.director.password.def = 0 65 director.director.fdconnecttimeout.ref = 0 66 director.director.fdconnecttimeout.type = Date 67 director.director.fdconnecttimeout.required = false 68 director.director.fdconnecttimeout.def = 3 * 60 69 director.director.sdconnecttimeout.ref = 0 70 director.director.sdconnecttimeout.type = Date 71 director.director.sdconnecttimeout.required = false 72 director.director.sdconnecttimeout.def = 30 * 60 73 director.director.heartbeatinterval.ref = 0 74 director.director.heartbeatinterval.type = Date 75 director.director.heartbeatinterval.required = false 76 director.director.heartbeatinterval.def = 0 77 director.director.tlsauthenticate.ref = 0 78 director.director.tlsauthenticate.type = store_bool 79 director.director.tlsauthenticate.required = false 80 director.director.tlsauthenticate.def = 0 81 director.director.tlsenable.ref = 0 82 director.director.tlsenable.type = store_bool 83 director.director.tlsenable.required = false 84 director.director.tlsenable.def = 0 85 director.director.tlsrequire.ref = 0 86 director.director.tlsrequire.type = store_bool 87 director.director.tlsrequire.required = false 88 director.director.tlsrequire.def = 0 89 director.director.tlsverifypeer.ref = 0 90 director.director.tlsverifypeer.type = store_bool 91 director.director.tlsverifypeer.required = false 92 director.director.tlsverifypeer.def = true 93 director.director.tlscacertificatefile.ref = 0 94 director.director.tlscacertificatefile.type = path 95 director.director.tlscacertificatefile.required = false 96 director.director.tlscacertificatefile.def = 0 97 director.director.tlscacertificatedir.ref = 0 98 director.director.tlscacertificatedir.type = path 99 director.director.tlscacertificatedir.required = false 100 director.director.tlscacertificatedir.def = 0 101 director.director.tlscertificate.ref = 0 102 director.director.tlscertificate.type = path 103 director.director.tlscertificate.required = false 104 director.director.tlscertificate.def = 0 105 director.director.tlskey.ref = 0 106 director.director.tlskey.type = path 107 director.director.tlskey.required = false 108 director.director.tlskey.def = 0 109 director.director.tlsdhfile.ref = 0 110 director.director.tlsdhfile.type = path 111 director.director.tlsdhfile.required = false 112 director.director.tlsdhfile.def = 0 113 director.director.tlsallowedcn.ref = 0 114 director.director.tlsallowedcn.type = store_alist_str 115 director.director.tlsallowedcn.required = false 116 director.director.tlsallowedcn.def = 0 117 director.director.statisticsretention.ref = 0 118 director.director.statisticsretention.type = Date 119 director.director.statisticsretention.required = false 120 director.director.statisticsretention.def = 60*60*24*31*12*5 121 director.director.verid.ref = 0 122 director.director.verid.type = String 123 director.director.verid.required = false 124 director.director.verid.def = 0 125 director.console.name.ref = 0 126 director.console.name.type = String 127 director.console.name.required = true 128 director.console.name.def = 0 129 director.console.description.ref = 0 130 director.console.description.type = String 131 director.console.description.required = false 132 director.console.description.def = 0 133 director.console.password.ref = 0 134 director.console.password.type = Password 135 director.console.password.required = true 136 director.console.password.def = 0 137 director.console.jobacl.ref = Job_ACL 138 director.console.jobacl.type = Acl 139 director.console.jobacl.required = false 140 director.console.jobacl.def = 0 141 director.console.clientacl.ref = Client_ACL 142 director.console.clientacl.type = Acl 143 director.console.clientacl.required = false 144 director.console.clientacl.def = 0 145 director.console.storageacl.ref = Storage_ACL 146 director.console.storageacl.type = Acl 147 director.console.storageacl.required = false 148 director.console.storageacl.def = 0 149 director.console.scheduleacl.ref = Schedule_ACL 150 director.console.scheduleacl.type = Acl 151 director.console.scheduleacl.required = false 152 director.console.scheduleacl.def = 0 153 director.console.runacl.ref = Run_ACL 154 director.console.runacl.type = Acl 155 director.console.runacl.required = false 156 director.console.runacl.def = 0 157 director.console.poolacl.ref = Pool_ACL 158 director.console.poolacl.type = Acl 159 director.console.poolacl.required = false 160 director.console.poolacl.def = 0 161 director.console.commandacl.ref = Command_ACL 162 director.console.commandacl.type = Acl 163 director.console.commandacl.required = false 164 director.console.commandacl.def = 0 165 director.console.filesetacl.ref = FileSet_ACL 166 director.console.filesetacl.type = Acl 167 director.console.filesetacl.required = false 168 director.console.filesetacl.def = 0 169 director.console.catalogacl.ref = Catalog_ACL 170 director.console.catalogacl.type = Acl 171 director.console.catalogacl.required = false 172 director.console.catalogacl.def = 0 173 director.console.whereacl.ref = Where_ACL 174 director.console.whereacl.type = Acl 175 director.console.whereacl.required = false 176 director.console.whereacl.def = 0 177 director.console.pluginoptionsacl.ref = PluginOptions_ACL 178 director.console.pluginoptionsacl.type = Acl 179 director.console.pluginoptionsacl.required = false 180 director.console.pluginoptionsacl.def = 0 181 director.console.tlsauthenticate.ref = 0 182 director.console.tlsauthenticate.type = store_bool 183 director.console.tlsauthenticate.required = false 184 director.console.tlsauthenticate.def = 0 185 director.console.tlsenable.ref = 0 186 director.console.tlsenable.type = store_bool 187 director.console.tlsenable.required = false 188 director.console.tlsenable.def = 0 189 director.console.tlsrequire.ref = 0 190 director.console.tlsrequire.type = store_bool 191 director.console.tlsrequire.required = false 192 director.console.tlsrequire.def = 0 193 director.console.tlsverifypeer.ref = 0 194 director.console.tlsverifypeer.type = store_bool 195 director.console.tlsverifypeer.required = false 196 director.console.tlsverifypeer.def = true 197 director.console.tlscacertificatefile.ref = 0 198 director.console.tlscacertificatefile.type = path 199 director.console.tlscacertificatefile.required = false 200 director.console.tlscacertificatefile.def = 0 201 director.console.tlscacertificatedir.ref = 0 202 director.console.tlscacertificatedir.type = path 203 director.console.tlscacertificatedir.required = false 204 director.console.tlscacertificatedir.def = 0 205 director.console.tlscertificate.ref = 0 206 director.console.tlscertificate.type = path 207 director.console.tlscertificate.required = false 208 director.console.tlscertificate.def = 0 209 director.console.tlskey.ref = 0 210 director.console.tlskey.type = path 211 director.console.tlskey.required = false 212 director.console.tlskey.def = 0 213 director.console.tlsdhfile.ref = 0 214 director.console.tlsdhfile.type = path 215 director.console.tlsdhfile.required = false 216 director.console.tlsdhfile.def = 0 217 director.console.tlsallowedcn.ref = 0 218 director.console.tlsallowedcn.type = store_alist_str 219 director.console.tlsallowedcn.required = false 220 director.console.tlsallowedcn.def = 0 221 director.client.name.ref = 0 222 director.client.name.type = String 223 director.client.name.required = true 224 director.client.name.def = 0 225 director.client.description.ref = 0 226 director.client.description.type = String 227 director.client.description.required = false 228 director.client.description.def = 0 229 director.client.address.ref = 0 230 director.client.address.type = String 231 director.client.address.required = true 232 director.client.address.def = 0 233 director.client.fdaddress.ref = 0 234 director.client.fdaddress.type = String 235 director.client.fdaddress.required = false 236 director.client.fdaddress.def = 0 237 director.client.fdport.ref = 0 238 director.client.fdport.type = int 239 director.client.fdport.required = false 240 director.client.fdport.def = 9102 241 director.client.password.ref = 0 242 director.client.password.type = Password 243 director.client.password.required = true 244 director.client.password.def = 0 245 director.client.fdpassword.ref = 0 246 director.client.fdpassword.type = Password 247 director.client.fdpassword.required = false 248 director.client.fdpassword.def = 0 249 director.client.catalog.ref = R_CATALOG 250 director.client.catalog.type = Resource 251 director.client.catalog.required = true 252 director.client.catalog.def = 0 253 director.client.fileretention.ref = 0 254 director.client.fileretention.type = Date 255 director.client.fileretention.required = false 256 director.client.fileretention.def = 60*60*24*60 257 director.client.jobretention.ref = 0 258 director.client.jobretention.type = Date 259 director.client.jobretention.required = false 260 director.client.jobretention.def = 60*60*24*180 261 director.client.heartbeatinterval.ref = 0 262 director.client.heartbeatinterval.type = Date 263 director.client.heartbeatinterval.required = false 264 director.client.heartbeatinterval.def = 0 265 director.client.autoprune.ref = 0 266 director.client.autoprune.type = store_bool 267 director.client.autoprune.required = false 268 director.client.autoprune.def = true 269 director.client.maximumconcurrentjobs.ref = 0 270 director.client.maximumconcurrentjobs.type = int 271 director.client.maximumconcurrentjobs.required = false 272 director.client.maximumconcurrentjobs.def = 1 273 director.client.tlsauthenticate.ref = 0 274 director.client.tlsauthenticate.type = store_bool 275 director.client.tlsauthenticate.required = false 276 director.client.tlsauthenticate.def = 0 277 director.client.tlsenable.ref = 0 278 director.client.tlsenable.type = store_bool 279 director.client.tlsenable.required = false 280 director.client.tlsenable.def = 0 281 director.client.tlsrequire.ref = 0 282 director.client.tlsrequire.type = store_bool 283 director.client.tlsrequire.required = false 284 director.client.tlsrequire.def = 0 285 director.client.tlscacertificatefile.ref = 0 286 director.client.tlscacertificatefile.type = path 287 director.client.tlscacertificatefile.required = false 288 director.client.tlscacertificatefile.def = 0 289 director.client.tlscacertificatedir.ref = 0 290 director.client.tlscacertificatedir.type = path 291 director.client.tlscacertificatedir.required = false 292 director.client.tlscacertificatedir.def = 0 293 director.client.tlscertificate.ref = 0 294 director.client.tlscertificate.type = path 295 director.client.tlscertificate.required = false 296 director.client.tlscertificate.def = 0 297 director.client.tlskey.ref = 0 298 director.client.tlskey.type = path 299 director.client.tlskey.required = false 300 director.client.tlskey.def = 0 301 director.client.tlsallowedcn.ref = 0 302 director.client.tlsallowedcn.type = store_alist_str 303 director.client.tlsallowedcn.required = false 304 director.client.tlsallowedcn.def = 0 305 director.storage.name.ref = 0 306 director.storage.name.type = String 307 director.storage.name.required = true 308 director.storage.name.def = 0 309 director.storage.description.ref = 0 310 director.storage.description.type = String 311 director.storage.description.required = false 312 director.storage.description.def = 0 313 director.storage.sdport.ref = 0 314 director.storage.sdport.type = int 315 director.storage.sdport.required = false 316 director.storage.sdport.def = 9103 317 director.storage.address.ref = 0 318 director.storage.address.type = String 319 director.storage.address.required = true 320 director.storage.address.def = 0 321 director.storage.sdaddress.ref = 0 322 director.storage.sdaddress.type = String 323 director.storage.sdaddress.required = false 324 director.storage.sdaddress.def = 0 325 director.storage.password.ref = 0 326 director.storage.password.type = Password 327 director.storage.password.required = true 328 director.storage.password.def = 0 329 director.storage.sdpassword.ref = 0 330 director.storage.sdpassword.type = Password 331 director.storage.sdpassword.required = false 332 director.storage.sdpassword.def = 0 333 director.storage.device.ref = R_DEVICE 334 director.storage.device.type = store_device 335 director.storage.device.required = true 336 director.storage.device.def = 0 337 director.storage.mediatype.ref = 0 338 director.storage.mediatype.type = String 339 director.storage.mediatype.required = true 340 director.storage.mediatype.def = 0 341 director.storage.autochanger.ref = 0 342 director.storage.autochanger.type = store_bool 343 director.storage.autochanger.required = false 344 director.storage.autochanger.def = 0 345 director.storage.enabled.ref = 0 346 director.storage.enabled.type = store_bool 347 director.storage.enabled.required = false 348 director.storage.enabled.def = true 349 director.storage.allowcompression.ref = 0 350 director.storage.allowcompression.type = store_bool 351 director.storage.allowcompression.required = false 352 director.storage.allowcompression.def = true 353 director.storage.heartbeatinterval.ref = 0 354 director.storage.heartbeatinterval.type = Date 355 director.storage.heartbeatinterval.required = false 356 director.storage.heartbeatinterval.def = 0 357 director.storage.maximumconcurrentjobs.ref = 0 358 director.storage.maximumconcurrentjobs.type = int 359 director.storage.maximumconcurrentjobs.required = false 360 director.storage.maximumconcurrentjobs.def = 1 361 director.storage.tlsauthenticate.ref = 0 362 director.storage.tlsauthenticate.type = store_bool 363 director.storage.tlsauthenticate.required = false 364 director.storage.tlsauthenticate.def = 0 365 director.storage.tlsenable.ref = 0 366 director.storage.tlsenable.type = store_bool 367 director.storage.tlsenable.required = false 368 director.storage.tlsenable.def = 0 369 director.storage.tlsrequire.ref = 0 370 director.storage.tlsrequire.type = store_bool 371 director.storage.tlsrequire.required = false 372 director.storage.tlsrequire.def = 0 373 director.storage.tlscacertificatefile.ref = 0 374 director.storage.tlscacertificatefile.type = path 375 director.storage.tlscacertificatefile.required = false 376 director.storage.tlscacertificatefile.def = 0 377 director.storage.tlscacertificatedir.ref = 0 378 director.storage.tlscacertificatedir.type = path 379 director.storage.tlscacertificatedir.required = false 380 director.storage.tlscacertificatedir.def = 0 381 director.storage.tlscertificate.ref = 0 382 director.storage.tlscertificate.type = path 383 director.storage.tlscertificate.required = false 384 director.storage.tlscertificate.def = 0 385 director.storage.tlskey.ref = 0 386 director.storage.tlskey.type = path 387 director.storage.tlskey.required = false 388 director.storage.tlskey.def = 0 389 director.catalog.name.ref = 0 390 director.catalog.name.type = String 391 director.catalog.name.required = true 392 director.catalog.name.def = 0 393 director.catalog.description.ref = 0 394 director.catalog.description.type = String 395 director.catalog.description.required = false 396 director.catalog.description.def = 0 397 director.catalog.address.ref = 0 398 director.catalog.address.type = String 399 director.catalog.address.required = false 400 director.catalog.address.def = 0 401 director.catalog.dbaddress.ref = 0 402 director.catalog.dbaddress.type = String 403 director.catalog.dbaddress.required = false 404 director.catalog.dbaddress.def = 0 405 director.catalog.dbport.ref = 0 406 director.catalog.dbport.type = int 407 director.catalog.dbport.required = false 408 director.catalog.dbport.def = 0 409 director.catalog.password.ref = 0 410 director.catalog.password.type = String 411 director.catalog.password.required = false 412 director.catalog.password.def = 0 413 director.catalog.dbpassword.ref = 0 414 director.catalog.dbpassword.type = String 415 director.catalog.dbpassword.required = false 416 director.catalog.dbpassword.def = 0 417 director.catalog.dbuser.ref = 0 418 director.catalog.dbuser.type = String 419 director.catalog.dbuser.required = false 420 director.catalog.dbuser.def = 0 421 director.catalog.user.ref = 0 422 director.catalog.user.type = String 423 director.catalog.user.required = false 424 director.catalog.user.def = 0 425 director.catalog.dbname.ref = 0 426 director.catalog.dbname.type = String 427 director.catalog.dbname.required = true 428 director.catalog.dbname.def = 0 429 director.catalog.dbdriver.ref = 0 430 director.catalog.dbdriver.type = String 431 director.catalog.dbdriver.required = false 432 director.catalog.dbdriver.def = 0 433 director.catalog.dbsocket.ref = 0 434 director.catalog.dbsocket.type = String 435 director.catalog.dbsocket.required = false 436 director.catalog.dbsocket.def = 0 437 director.catalog.multipleconnections.ref = 0 438 director.catalog.multipleconnections.type = boolean 439 director.catalog.multipleconnections.required = false 440 director.catalog.multipleconnections.def = 0 441 director.job.name.ref = 0 442 director.job.name.type = String 443 director.job.name.required = true 444 director.job.name.def = 0 445 director.job.description.ref = 0 446 director.job.description.type = String 447 director.job.description.required = false 448 director.job.description.def = 0 449 director.job.type.ref = 0 450 director.job.type.type = store_jobtype 451 director.job.type.required = true 452 director.job.type.def = 0 453 director.job.level.ref = 0 454 director.job.level.type = store_level 455 director.job.level.required = false 456 director.job.level.def = 0 457 director.job.messages.ref = R_MSGS 458 director.job.messages.type = Resource 459 director.job.messages.required = true 460 director.job.messages.def = 0 461 director.job.storage.ref = R_STORAGE 462 director.job.storage.type = store_alist_res 463 director.job.storage.required = false 464 director.job.storage.def = 0 465 director.job.pool.ref = R_POOL 466 director.job.pool.type = Resource 467 director.job.pool.required = true 468 director.job.pool.def = 0 469 director.job.fullbackuppool.ref = R_POOL 470 director.job.fullbackuppool.type = Resource 471 director.job.fullbackuppool.required = false 472 director.job.fullbackuppool.def = 0 473 director.job.incrementalbackuppool.ref = R_POOL 474 director.job.incrementalbackuppool.type = Resource 475 director.job.incrementalbackuppool.required = false 476 director.job.incrementalbackuppool.def = 0 477 director.job.differentialbackuppool.ref = R_POOL 478 director.job.differentialbackuppool.type = Resource 479 director.job.differentialbackuppool.required = false 480 director.job.differentialbackuppool.def = 0 481 director.job.client.ref = R_CLIENT 482 director.job.client.type = Resource 483 director.job.client.required = true 484 director.job.client.def = 0 485 director.job.fileset.ref = R_FILESET 486 director.job.fileset.type = Resource 487 director.job.fileset.required = true 488 director.job.fileset.def = 0 489 director.job.schedule.ref = R_SCHEDULE 490 director.job.schedule.type = Resource 491 director.job.schedule.required = false 492 director.job.schedule.def = 0 493 director.job.verifyjob.ref = R_JOB 494 director.job.verifyjob.type = Resource 495 director.job.verifyjob.required = false 496 director.job.verifyjob.def = 0 497 director.job.jobtoverify.ref = R_JOB 498 director.job.jobtoverify.type = Resource 499 director.job.jobtoverify.required = false 500 director.job.jobtoverify.def = 0 501 director.job.jobdefs.ref = R_JOBDEFS 502 director.job.jobdefs.type = Resource 503 director.job.jobdefs.required = false 504 director.job.jobdefs.def = 0 505 director.job.run.ref = 0 506 director.job.run.type = store_alist_str 507 director.job.run.required = false 508 director.job.run.def = 0 509 director.job.where.ref = 0 510 director.job.where.type = path 511 director.job.where.required = false 512 director.job.where.def = 0 513 director.job.regexwhere.ref = 0 514 director.job.regexwhere.type = String 515 director.job.regexwhere.required = false 516 director.job.regexwhere.def = 0 517 director.job.stripprefix.ref = 0 518 director.job.stripprefix.type = String 519 director.job.stripprefix.required = false 520 director.job.stripprefix.def = 0 521 director.job.addprefix.ref = 0 522 director.job.addprefix.type = String 523 director.job.addprefix.required = false 524 director.job.addprefix.def = 0 525 director.job.addsuffix.ref = 0 526 director.job.addsuffix.type = String 527 director.job.addsuffix.required = false 528 director.job.addsuffix.def = 0 529 director.job.bootstrap.ref = 0 530 director.job.bootstrap.type = path 531 director.job.bootstrap.required = false 532 director.job.bootstrap.def = 0 533 director.job.writebootstrap.ref = 0 534 director.job.writebootstrap.type = path 535 director.job.writebootstrap.required = false 536 director.job.writebootstrap.def = 0 537 director.job.writeverifylist.ref = 0 538 director.job.writeverifylist.type = path 539 director.job.writeverifylist.required = false 540 director.job.writeverifylist.def = 0 541 director.job.replace.ref = 0 542 director.job.replace.type = store_replace 543 director.job.replace.required = false 544 director.job.replace.def = REPLACE_ALWAYS 545 director.job.maxrunschedtime.ref = 0 546 director.job.maxrunschedtime.type = Date 547 director.job.maxrunschedtime.required = false 548 director.job.maxrunschedtime.def = 0 549 director.job.maxruntime.ref = 0 550 director.job.maxruntime.type = Date 551 director.job.maxruntime.required = false 552 director.job.maxruntime.def = 0 553 director.job.fullmaxwaittime.ref = 0 554 director.job.fullmaxwaittime.type = Date 555 director.job.fullmaxwaittime.required = false 556 director.job.fullmaxwaittime.def = 0 557 director.job.incrementalmaxwaittime.ref = 0 558 director.job.incrementalmaxwaittime.type = Date 559 director.job.incrementalmaxwaittime.required = false 560 director.job.incrementalmaxwaittime.def = 0 561 director.job.differentialmaxwaittime.ref = 0 562 director.job.differentialmaxwaittime.type = Date 563 director.job.differentialmaxwaittime.required = false 564 director.job.differentialmaxwaittime.def = 0 565 director.job.fullmaxruntime.ref = 0 566 director.job.fullmaxruntime.type = Date 567 director.job.fullmaxruntime.required = false 568 director.job.fullmaxruntime.def = 0 569 director.job.incrementalmaxruntime.ref = 0 570 director.job.incrementalmaxruntime.type = Date 571 director.job.incrementalmaxruntime.required = false 572 director.job.incrementalmaxruntime.def = 0 573 director.job.differentialmaxruntime.ref = 0 574 director.job.differentialmaxruntime.type = Date 575 director.job.differentialmaxruntime.required = false 576 director.job.differentialmaxruntime.def = 0 577 director.job.maxwaittime.ref = 0 578 director.job.maxwaittime.type = Date 579 director.job.maxwaittime.required = false 580 director.job.maxwaittime.def = 0 581 director.job.maxstartdelay.ref = 0 582 director.job.maxstartdelay.type = Date 583 director.job.maxstartdelay.required = false 584 director.job.maxstartdelay.def = 0 585 director.job.maxfullinterval.ref = 0 586 director.job.maxfullinterval.type = Date 587 director.job.maxfullinterval.required = false 588 director.job.maxfullinterval.def = 0 589 director.job.maxdiffinterval.ref = 0 590 director.job.maxdiffinterval.type = Date 591 director.job.maxdiffinterval.required = false 592 director.job.maxdiffinterval.def = 0 593 director.job.prefixlinks.ref = 0 594 director.job.prefixlinks.type = store_bool 595 director.job.prefixlinks.required = false 596 director.job.prefixlinks.def = false 597 director.job.prunejobs.ref = 0 598 director.job.prunejobs.type = store_bool 599 director.job.prunejobs.required = false 600 director.job.prunejobs.def = false 601 director.job.prunefiles.ref = 0 602 director.job.prunefiles.type = store_bool 603 director.job.prunefiles.required = false 604 director.job.prunefiles.def = false 605 director.job.prunevolumes.ref = 0 606 director.job.prunevolumes.type = store_bool 607 director.job.prunevolumes.required = false 608 director.job.prunevolumes.def = false 609 director.job.enabled.ref = 0 610 director.job.enabled.type = store_bool 611 director.job.enabled.required = false 612 director.job.enabled.def = true 613 director.job.spoolattributes.ref = 0 614 director.job.spoolattributes.type = store_bool 615 director.job.spoolattributes.required = false 616 director.job.spoolattributes.def = false 617 director.job.spooldata.ref = 0 618 director.job.spooldata.type = store_bool 619 director.job.spooldata.required = false 620 director.job.spooldata.def = false 621 director.job.spoolsize.ref = 0 622 director.job.spoolsize.type = store_size64 623 director.job.spoolsize.required = false 624 director.job.spoolsize.def = 0 625 director.job.rerunfailedlevels.ref = 0 626 director.job.rerunfailedlevels.type = store_bool 627 director.job.rerunfailedlevels.required = false 628 director.job.rerunfailedlevels.def = false 629 director.job.prefermountedvolumes.ref = 0 630 director.job.prefermountedvolumes.type = store_bool 631 director.job.prefermountedvolumes.required = false 632 director.job.prefermountedvolumes.def = true 633 director.job.runbeforejob.ref = 0 634 director.job.runbeforejob.type = store_short_runscript 635 director.job.runbeforejob.required = false 636 director.job.runbeforejob.def = 0 637 director.job.runafterjob.ref = 0 638 director.job.runafterjob.type = store_short_runscript 639 director.job.runafterjob.required = false 640 director.job.runafterjob.def = 0 641 director.job.runafterfailedjob.ref = 0 642 director.job.runafterfailedjob.type = store_short_runscript 643 director.job.runafterfailedjob.required = false 644 director.job.runafterfailedjob.def = 0 645 director.job.clientrunbeforejob.ref = 0 646 director.job.clientrunbeforejob.type = store_short_runscript 647 director.job.clientrunbeforejob.required = false 648 director.job.clientrunbeforejob.def = 0 649 director.job.clientrunafterjob.ref = 0 650 director.job.clientrunafterjob.type = store_short_runscript 651 director.job.clientrunafterjob.required = false 652 director.job.clientrunafterjob.def = 0 653 director.job.maximumconcurrentjobs.ref = 0 654 director.job.maximumconcurrentjobs.type = int 655 director.job.maximumconcurrentjobs.required = false 656 director.job.maximumconcurrentjobs.def = 1 657 director.job.rescheduleonerror.ref = 0 658 director.job.rescheduleonerror.type = store_bool 659 director.job.rescheduleonerror.required = false 660 director.job.rescheduleonerror.def = false 661 director.job.rescheduleinterval.ref = 0 662 director.job.rescheduleinterval.type = Date 663 director.job.rescheduleinterval.required = false 664 director.job.rescheduleinterval.def = 60 * 30 665 director.job.rescheduletimes.ref = 0 666 director.job.rescheduletimes.type = int 667 director.job.rescheduletimes.required = false 668 director.job.rescheduletimes.def = 0 669 director.job.priority.ref = 0 670 director.job.priority.type = int 671 director.job.priority.required = false 672 director.job.priority.def = 10 673 director.job.allowmixedpriority.ref = 0 674 director.job.allowmixedpriority.type = store_bool 675 director.job.allowmixedpriority.required = false 676 director.job.allowmixedpriority.def = false 677 director.job.writepartafterjob.ref = 0 678 director.job.writepartafterjob.type = store_bool 679 director.job.writepartafterjob.required = false 680 director.job.writepartafterjob.def = true 681 director.job.selectionpattern.ref = 0 682 director.job.selectionpattern.type = String 683 director.job.selectionpattern.required = false 684 director.job.selectionpattern.def = 0 685 director.job.runscript.ref = 0 686 director.job.runscript.type = store_runscript 687 director.job.runscript.required = false 688 director.job.runscript.def = 0 689 director.job.selectiontype.ref = 0 690 director.job.selectiontype.type = store_migtype 691 director.job.selectiontype.required = false 692 director.job.selectiontype.def = 0 693 director.job.accurate.ref = 0 694 director.job.accurate.type = store_bool 695 director.job.accurate.required = false 696 director.job.accurate.def = 0 697 director.job.allowduplicatejobs.ref = 0 698 director.job.allowduplicatejobs.type = store_bool 699 director.job.allowduplicatejobs.required = false 700 director.job.allowduplicatejobs.def = true 701 director.job.allowhigherduplicates.ref = 0 702 director.job.allowhigherduplicates.type = store_bool 703 director.job.allowhigherduplicates.required = false 704 director.job.allowhigherduplicates.def = true 705 director.job.cancellowerlevelduplicates.ref = 0 706 director.job.cancellowerlevelduplicates.type = store_bool 707 director.job.cancellowerlevelduplicates.required = false 708 director.job.cancellowerlevelduplicates.def = false 709 director.job.cancelqueuedduplicates.ref = 0 710 director.job.cancelqueuedduplicates.type = store_bool 711 director.job.cancelqueuedduplicates.required = false 712 director.job.cancelqueuedduplicates.def = false 713 director.job.cancelrunningduplicates.ref = 0 714 director.job.cancelrunningduplicates.type = store_bool 715 director.job.cancelrunningduplicates.required = false 716 director.job.cancelrunningduplicates.def = false 717 director.job.pluginoptions.ref = 0 718 director.job.pluginoptions.type = String 719 director.job.pluginoptions.required = false 720 director.job.pluginoptions.def = 0 721 director.job.base.ref = R_JOB 722 director.job.base.type = store_alist_res 723 director.job.base.required = false 724 director.job.base.def = 0 725 director.fileset.name.ref = 0 726 director.fileset.name.type = String 727 director.fileset.name.required = true 728 director.fileset.name.def = 0 729 director.fileset.description.ref = 0 730 director.fileset.description.type = String 731 director.fileset.description.required = false 732 director.fileset.description.def = 0 733 director.fileset.include.ref = 0 734 director.fileset.include.type = store_inc 735 director.fileset.include.required = false 736 director.fileset.include.def = 0 737 director.fileset.exclude.ref = 1 738 director.fileset.exclude.type = store_inc 739 director.fileset.exclude.required = false 740 director.fileset.exclude.def = 0 741 director.fileset.ignorefilesetchanges.ref = 0 742 director.fileset.ignorefilesetchanges.type = store_bool 743 director.fileset.ignorefilesetchanges.required = false 744 director.fileset.ignorefilesetchanges.def = false 745 director.fileset.enablevss.ref = 0 746 director.fileset.enablevss.type = store_bool 747 director.fileset.enablevss.required = false 748 director.fileset.enablevss.def = true 749 director.schedule.name.ref = 0 750 director.schedule.name.type = String 751 director.schedule.name.required = true 752 director.schedule.name.def = 0 753 director.schedule.description.ref = 0 754 director.schedule.description.type = String 755 director.schedule.description.required = false 756 director.schedule.description.def = 0 757 director.schedule.run.ref = 0 758 director.schedule.run.type = store_run 759 director.schedule.run.required = false 760 director.schedule.run.def = 0 761 director.pool.name.ref = 0 762 director.pool.name.type = String 763 director.pool.name.required = true 764 director.pool.name.def = 0 765 director.pool.description.ref = 0 766 director.pool.description.type = String 767 director.pool.description.required = false 768 director.pool.description.def = 0 769 director.pool.pooltype.ref = 0 770 director.pool.pooltype.type = String 771 director.pool.pooltype.required = true 772 director.pool.pooltype.def = 0 773 director.pool.labelformat.ref = 0 774 director.pool.labelformat.type = String 775 director.pool.labelformat.required = false 776 director.pool.labelformat.def = 0 777 director.pool.cleaningprefix.ref = 0 778 director.pool.cleaningprefix.type = String 779 director.pool.cleaningprefix.required = false 780 director.pool.cleaningprefix.def = 0 781 director.pool.usecatalog.ref = 0 782 director.pool.usecatalog.type = store_bool 783 director.pool.usecatalog.required = false 784 director.pool.usecatalog.def = true 785 director.pool.usevolumeonce.ref = 0 786 director.pool.usevolumeonce.type = store_bool 787 director.pool.usevolumeonce.required = false 788 director.pool.usevolumeonce.def = 0 789 director.pool.purgeoldestvolume.ref = 0 790 director.pool.purgeoldestvolume.type = store_bool 791 director.pool.purgeoldestvolume.required = false 792 director.pool.purgeoldestvolume.def = 0 793 director.pool.actiononpurge.ref = 0 794 director.pool.actiononpurge.type = store_actiononpurge 795 director.pool.actiononpurge.required = false 796 director.pool.actiononpurge.def = 0 797 director.pool.recycleoldestvolume.ref = 0 798 director.pool.recycleoldestvolume.type = store_bool 799 director.pool.recycleoldestvolume.required = false 800 director.pool.recycleoldestvolume.def = 0 801 director.pool.recyclecurrentvolume.ref = 0 802 director.pool.recyclecurrentvolume.type = store_bool 803 director.pool.recyclecurrentvolume.required = false 804 director.pool.recyclecurrentvolume.def = 0 805 director.pool.maximumvolumes.ref = 0 806 director.pool.maximumvolumes.type = int 807 director.pool.maximumvolumes.required = false 808 director.pool.maximumvolumes.def = 0 809 director.pool.maximumvolumejobs.ref = 0 810 director.pool.maximumvolumejobs.type = int 811 director.pool.maximumvolumejobs.required = false 812 director.pool.maximumvolumejobs.def = 0 813 director.pool.maximumvolumefiles.ref = 0 814 director.pool.maximumvolumefiles.type = int 815 director.pool.maximumvolumefiles.required = false 816 director.pool.maximumvolumefiles.def = 0 817 director.pool.maximumvolumebytes.ref = 0 818 director.pool.maximumvolumebytes.type = store_size64 819 director.pool.maximumvolumebytes.required = false 820 director.pool.maximumvolumebytes.def = 0 821 director.pool.catalogfiles.ref = 0 822 director.pool.catalogfiles.type = store_bool 823 director.pool.catalogfiles.required = false 824 director.pool.catalogfiles.def = true 825 director.pool.volumeretention.ref = 0 826 director.pool.volumeretention.type = Date 827 director.pool.volumeretention.required = false 828 director.pool.volumeretention.def = 60*60*24*365 829 director.pool.volumeuseduration.ref = 0 830 director.pool.volumeuseduration.type = Date 831 director.pool.volumeuseduration.required = false 832 director.pool.volumeuseduration.def = 0 833 director.pool.migrationtime.ref = 0 834 director.pool.migrationtime.type = Date 835 director.pool.migrationtime.required = false 836 director.pool.migrationtime.def = 0 837 director.pool.migrationhighbytes.ref = 0 838 director.pool.migrationhighbytes.type = store_size64 839 director.pool.migrationhighbytes.required = false 840 director.pool.migrationhighbytes.def = 0 841 director.pool.migrationlowbytes.ref = 0 842 director.pool.migrationlowbytes.type = store_size64 843 director.pool.migrationlowbytes.required = false 844 director.pool.migrationlowbytes.def = 0 845 director.pool.nextpool.ref = R_POOL 846 director.pool.nextpool.type = Resource 847 director.pool.nextpool.required = false 848 director.pool.nextpool.def = 0 849 director.pool.storage.ref = R_STORAGE 850 director.pool.storage.type = store_alist_res 851 director.pool.storage.required = false 852 director.pool.storage.def = 0 853 director.pool.autoprune.ref = 0 854 director.pool.autoprune.type = store_bool 855 director.pool.autoprune.required = false 856 director.pool.autoprune.def = true 857 director.pool.recycle.ref = 0 858 director.pool.recycle.type = store_bool 859 director.pool.recycle.required = false 860 director.pool.recycle.def = true 861 director.pool.recyclepool.ref = R_POOL 862 director.pool.recyclepool.type = Resource 863 director.pool.recyclepool.required = false 864 director.pool.recyclepool.def = 0 865 director.pool.scratchpool.ref = R_POOL 866 director.pool.scratchpool.type = Resource 867 director.pool.scratchpool.required = false 868 director.pool.scratchpool.def = 0 869 director.pool.copypool.ref = R_POOL 870 director.pool.copypool.type = store_alist_res 871 director.pool.copypool.required = false 872 director.pool.copypool.def = 0 873 director.pool.catalog.ref = R_CATALOG 874 director.pool.catalog.type = Resource 875 director.pool.catalog.required = false 876 director.pool.catalog.def = 0 877 director.pool.fileretention.ref = 0 878 director.pool.fileretention.type = Date 879 director.pool.fileretention.required = false 880 director.pool.fileretention.def = 0 881 director.pool.jobretention.ref = 0 882 director.pool.jobretention.type = Date 883 director.pool.jobretention.required = false 884 director.pool.jobretention.def = 0 885 director.counter.name.ref = 0 886 director.counter.name.type = String 887 director.counter.name.required = true 888 director.counter.name.def = 0 889 director.counter.description.ref = 0 890 director.counter.description.type = String 891 director.counter.description.required = false 892 director.counter.description.def = 0 893 director.counter.minimum.ref = 0 894 director.counter.minimum.type = store_int32 895 director.counter.minimum.required = false 896 director.counter.minimum.def = 0 897 director.counter.maximum.ref = 0 898 director.counter.maximum.type = int 899 director.counter.maximum.required = false 900 director.counter.maximum.def = INT32_MAX 901 director.counter.wrapcounter.ref = R_COUNTER 902 director.counter.wrapcounter.type = Resource 903 director.counter.wrapcounter.required = false 904 director.counter.wrapcounter.def = 0 905 director.counter.catalog.ref = R_CATALOG 906 director.counter.catalog.type = Resource 907 director.counter.catalog.required = false 908 director.counter.catalog.def = 0 909 director.runscript.runsonsuccess.ref = 0 910 director.runscript.runsonsuccess.type = store_runscript_bool 911 director.runscript.runsonsuccess.required = false 912 director.runscript.runsonsuccess.def = 0 913 director.runscript.runsonfailure.ref = 0 914 director.runscript.runsonfailure.type = store_runscript_bool 915 director.runscript.runsonfailure.required = false 916 director.runscript.runsonfailure.def = 0 917 director.runscript.failjobonerror.ref = 0 918 director.runscript.failjobonerror.type = store_runscript_bool 919 director.runscript.failjobonerror.required = false 920 director.runscript.failjobonerror.def = 0 921 director.runscript.abortjobonerror.ref = 0 922 director.runscript.abortjobonerror.type = store_runscript_bool 923 director.runscript.abortjobonerror.required = false 924 director.runscript.abortjobonerror.def = 0 925 director.runscript.runswhen.ref = 0 926 director.runscript.runswhen.type = store_runscript_when 927 director.runscript.runswhen.required = false 928 director.runscript.runswhen.def = 0 929 storagedaemon.storage.name.ref = 0 930 storagedaemon.storage.name.type = String 931 storagedaemon.storage.name.required = true 932 storagedaemon.storage.name.def = 0 933 storagedaemon.storage.description.ref = 0 934 storagedaemon.storage.description.type = String 935 storagedaemon.storage.description.required = false 936 storagedaemon.storage.description.def = 0 937 storagedaemon.storage.sdaddress.ref = 0 938 storagedaemon.storage.sdaddress.type = store_addresses_address 939 storagedaemon.storage.sdaddress.required = false 940 storagedaemon.storage.sdaddress.def = 9103 941 storagedaemon.storage.sdaddresses.ref = 0 942 storagedaemon.storage.sdaddresses.type = store_addresses 943 storagedaemon.storage.sdaddresses.required = false 944 storagedaemon.storage.sdaddresses.def = 9103 945 storagedaemon.storage.messages.ref = R_MSGS 946 storagedaemon.storage.messages.type = Resource 947 storagedaemon.storage.messages.required = false 948 storagedaemon.storage.messages.def = 0 949 storagedaemon.storage.sdport.ref = 0 950 storagedaemon.storage.sdport.type = store_addresses_port 951 storagedaemon.storage.sdport.required = false 952 storagedaemon.storage.sdport.def = 9103 953 storagedaemon.storage.workingdirectory.ref = 0 954 storagedaemon.storage.workingdirectory.type = path 955 storagedaemon.storage.workingdirectory.required = true 956 storagedaemon.storage.workingdirectory.def = 0 957 storagedaemon.storage.piddirectory.ref = 0 958 storagedaemon.storage.piddirectory.type = path 959 storagedaemon.storage.piddirectory.required = true 960 storagedaemon.storage.piddirectory.def = 0 961 storagedaemon.storage.subsysdirectory.ref = 0 962 storagedaemon.storage.subsysdirectory.type = path 963 storagedaemon.storage.subsysdirectory.required = false 964 storagedaemon.storage.subsysdirectory.def = 0 965 storagedaemon.storage.plugindirectory.ref = 0 966 storagedaemon.storage.plugindirectory.type = path 967 storagedaemon.storage.plugindirectory.required = false 968 storagedaemon.storage.plugindirectory.def = 0 969 storagedaemon.storage.scriptsdirectory.ref = 0 970 storagedaemon.storage.scriptsdirectory.type = path 971 storagedaemon.storage.scriptsdirectory.required = false 972 storagedaemon.storage.scriptsdirectory.def = 0 973 storagedaemon.storage.maximumconcurrentjobs.ref = 0 974 storagedaemon.storage.maximumconcurrentjobs.type = int 975 storagedaemon.storage.maximumconcurrentjobs.required = false 976 storagedaemon.storage.maximumconcurrentjobs.def = 20 977 storagedaemon.storage.heartbeatinterval.ref = 0 978 storagedaemon.storage.heartbeatinterval.type = Date 979 storagedaemon.storage.heartbeatinterval.required = false 980 storagedaemon.storage.heartbeatinterval.def = 0 981 storagedaemon.storage.tlsauthenticate.ref = 0 982 storagedaemon.storage.tlsauthenticate.type = store_bool 983 storagedaemon.storage.tlsauthenticate.required = false 984 storagedaemon.storage.tlsauthenticate.def = 0 985 storagedaemon.storage.tlsenable.ref = 0 986 storagedaemon.storage.tlsenable.type = store_bool 987 storagedaemon.storage.tlsenable.required = false 988 storagedaemon.storage.tlsenable.def = 0 989 storagedaemon.storage.tlsrequire.ref = 0 990 storagedaemon.storage.tlsrequire.type = store_bool 991 storagedaemon.storage.tlsrequire.required = false 992 storagedaemon.storage.tlsrequire.def = 0 993 storagedaemon.storage.tlsverifypeer.ref = 1 994 storagedaemon.storage.tlsverifypeer.type = store_bool 995 storagedaemon.storage.tlsverifypeer.required = false 996 storagedaemon.storage.tlsverifypeer.def = 1 997 storagedaemon.storage.tlscacertificatefile.ref = 0 998 storagedaemon.storage.tlscacertificatefile.type = path 999 storagedaemon.storage.tlscacertificatefile.required = false 1000 storagedaemon.storage.tlscacertificatefile.def = 0 1001 storagedaemon.storage.tlscacertificatedir.ref = 0 1002 storagedaemon.storage.tlscacertificatedir.type = path 1003 storagedaemon.storage.tlscacertificatedir.required = false 1004 storagedaemon.storage.tlscacertificatedir.def = 0 1005 storagedaemon.storage.tlscertificate.ref = 0 1006 storagedaemon.storage.tlscertificate.type = path 1007 storagedaemon.storage.tlscertificate.required = false 1008 storagedaemon.storage.tlscertificate.def = 0 1009 storagedaemon.storage.tlskey.ref = 0 1010 storagedaemon.storage.tlskey.type = path 1011 storagedaemon.storage.tlskey.required = false 1012 storagedaemon.storage.tlskey.def = 0 1013 storagedaemon.storage.tlsdhfile.ref = 0 1014 storagedaemon.storage.tlsdhfile.type = path 1015 storagedaemon.storage.tlsdhfile.required = false 1016 storagedaemon.storage.tlsdhfile.def = 0 1017 storagedaemon.storage.tlsallowedcn.ref = 0 1018 storagedaemon.storage.tlsallowedcn.type = store_alist_str 1019 storagedaemon.storage.tlsallowedcn.required = false 1020 storagedaemon.storage.tlsallowedcn.def = 0 1021 storagedaemon.storage.clientconnectwait.ref = 0 1022 storagedaemon.storage.clientconnectwait.type = Date 1023 storagedaemon.storage.clientconnectwait.required = false 1024 storagedaemon.storage.clientconnectwait.def = 30 * 60 1025 storagedaemon.storage.verid.ref = 0 1026 storagedaemon.storage.verid.type = String 1027 storagedaemon.storage.verid.required = false 1028 storagedaemon.storage.verid.def = 0 101 1029 storagedaemon.director.name.ref = 0 102 1030 storagedaemon.director.name.type = String 103 storagedaemon.director.name.required = false1031 storagedaemon.director.name.required = true 104 1032 storagedaemon.director.name.def = 0 105 1033 storagedaemon.director.description.ref = 0 … … 109 1037 storagedaemon.director.password.ref = 0 110 1038 storagedaemon.director.password.type = Password 111 storagedaemon.director.password.required = false1039 storagedaemon.director.password.required = true 112 1040 storagedaemon.director.password.def = 0 113 1041 storagedaemon.director.monitor.ref = 0 … … 157 1085 storagedaemon.device.name.ref = 0 158 1086 storagedaemon.device.name.type = String 159 storagedaemon.device.name.required = false1087 storagedaemon.device.name.required = true 160 1088 storagedaemon.device.name.def = 0 161 1089 storagedaemon.device.description.ref = 0 … … 165 1093 storagedaemon.device.mediatype.ref = 0 166 1094 storagedaemon.device.mediatype.type = String 167 storagedaemon.device.mediatype.required = false1095 storagedaemon.device.mediatype.required = true 168 1096 storagedaemon.device.mediatype.def = 0 169 1097 storagedaemon.device.devicetype.ref = 0 … … 173 1101 storagedaemon.device.archivedevice.ref = 0 174 1102 storagedaemon.device.archivedevice.type = String 175 storagedaemon.device.archivedevice.required = false1103 storagedaemon.device.archivedevice.required = true 176 1104 storagedaemon.device.archivedevice.def = 0 177 1105 storagedaemon.device.hardwareendoffile.ref = CAP_EOF … … 373 1301 storagedaemon.autochanger.name.ref = 0 374 1302 storagedaemon.autochanger.name.type = String 375 storagedaemon.autochanger.name.required = false1303 storagedaemon.autochanger.name.required = true 376 1304 storagedaemon.autochanger.name.def = 0 377 1305 storagedaemon.autochanger.description.ref = 0 … … 381 1309 storagedaemon.autochanger.device.ref = R_DEVICE 382 1310 storagedaemon.autochanger.device.type = store_alist_res 383 storagedaemon.autochanger.device.required = false1311 storagedaemon.autochanger.device.required = true 384 1312 storagedaemon.autochanger.device.def = 0 385 1313 storagedaemon.autochanger.changerdevice.ref = 0 386 1314 storagedaemon.autochanger.changerdevice.type = String 387 storagedaemon.autochanger.changerdevice.required = false1315 storagedaemon.autochanger.changerdevice.required = true 388 1316 storagedaemon.autochanger.changerdevice.def = 0 389 1317 storagedaemon.autochanger.changercommand.ref = 0 390 1318 storagedaemon.autochanger.changercommand.type = String 391 storagedaemon.autochanger.changercommand.required = false1319 storagedaemon.autochanger.changercommand.required = true 392 1320 storagedaemon.autochanger.changercommand.def = 0 393 1321 filedaemon.client.name.ref = 0 394 1322 filedaemon.client.name.type = String 395 filedaemon.client.name.required = false1323 filedaemon.client.name.required = true 396 1324 filedaemon.client.name.def = 0 397 1325 filedaemon.client.description.ref = 0 … … 417 1345 filedaemon.client.workingdirectory.ref = 0 418 1346 filedaemon.client.workingdirectory.type = path 419 filedaemon.client.workingdirectory.required = false1347 filedaemon.client.workingdirectory.required = true 420 1348 filedaemon.client.workingdirectory.def = 0 421 1349 filedaemon.client.piddirectory.ref = 0 422 1350 filedaemon.client.piddirectory.type = path 423 filedaemon.client.piddirectory.required = false1351 filedaemon.client.piddirectory.required = true 424 1352 filedaemon.client.piddirectory.def = 0 425 1353 filedaemon.client.subsysdirectory.ref = 0 … … 509 1437 filedaemon.director.name.ref = 0 510 1438 filedaemon.director.name.type = String 511 filedaemon.director.name.required = false1439 filedaemon.director.name.required = true 512 1440 filedaemon.director.name.def = 0 513 1441 filedaemon.director.description.ref = 0 … … 517 1445 filedaemon.director.password.ref = 0 518 1446 filedaemon.director.password.type = Password 519 filedaemon.director.password.required = false1447 filedaemon.director.password.required = true 520 1448 filedaemon.director.password.def = 0 521 1449 filedaemon.director.address.ref = 0 … … 567 1495 filedaemon.director.tlsallowedcn.required = false 568 1496 filedaemon.director.tlsallowedcn.def = 0 569 director.director.name.ref = 0570 director.director.name.type = String571 director.director.name.required = false572 director.director.name.def = 0573 director.director.description.ref = 0574 director.director.description.type = String575 director.director.description.required = false576 director.director.description.def = 0577 director.director.messages.ref = R_MSGS578 director.director.messages.type = Resource579 director.director.messages.required = false580 director.director.messages.def = 0581 director.director.dirport.ref = 0582 director.director.dirport.type = store_addresses_port583 director.director.dirport.required = false584 director.director.dirport.def = 9101585 director.director.diraddress.ref = 0586 director.director.diraddress.type = store_addresses_address587 director.director.diraddress.required = false588 director.director.diraddress.def = 9101589 director.director.diraddresses.ref = 0590 director.director.diraddresses.type = store_addresses591 director.director.diraddresses.required = false592 director.director.diraddresses.def = 9101593 director.director.dirsourceaddress.ref = 0594 director.director.dirsourceaddress.type = store_addresses_address595 director.director.dirsourceaddress.required = false596 director.director.dirsourceaddress.def = 0597 director.director.queryfile.ref = 0598 director.director.queryfile.type = path599 director.director.queryfile.required = false600 director.director.queryfile.def = 0601 director.director.workingdirectory.ref = 0602 director.director.workingdirectory.type = path603 director.director.workingdirectory.required = false604 director.director.workingdirectory.def = 0605 director.director.plugindirectory.ref = 0606 director.director.plugindirectory.type = path607 director.director.plugindirectory.required = false608 director.director.plugindirectory.def = 0609 director.director.scriptsdirectory.ref = 0610 director.director.scriptsdirectory.type = path611 director.director.scriptsdirectory.required = false612 director.director.scriptsdirectory.def = 0613 director.director.piddirectory.ref = 0614 director.director.piddirectory.type = path615 director.director.piddirectory.required = false616 director.director.piddirectory.def = 0617 director.director.subsysdirectory.ref = 0618 director.director.subsysdirectory.type = path619 director.director.subsysdirectory.required = false620 director.director.subsysdirectory.def = 0621 director.director.maximumconcurrentjobs.ref = 0622 director.director.maximumconcurrentjobs.type = int623 director.director.maximumconcurrentjobs.required = false624 director.director.maximumconcurrentjobs.def = 1625 director.director.maximumconsoleconnections.ref = 0626 director.director.maximumconsoleconnections.type = int627 director.director.maximumconsoleconnections.required = false628 director.director.maximumconsoleconnections.def = 20629 director.director.password.ref = 0630 director.director.password.type = Password631 director.director.password.required = false632 director.director.password.def = 0633 director.director.fdconnecttimeout.ref = 0634 director.director.fdconnecttimeout.type = Date635 director.director.fdconnecttimeout.required = false636 director.director.fdconnecttimeout.def = 3 * 60637 director.director.sdconnecttimeout.ref = 0638 director.director.sdconnecttimeout.type = Date639 director.director.sdconnecttimeout.required = false640 director.director.sdconnecttimeout.def = 30 * 60641 director.director.heartbeatinterval.ref = 0642 director.director.heartbeatinterval.type = Date643 director.director.heartbeatinterval.required = false644 director.director.heartbeatinterval.def = 0645 director.director.tlsauthenticate.ref = 0646 director.director.tlsauthenticate.type = store_bool647 director.director.tlsauthenticate.required = false648 director.director.tlsauthenticate.def = 0649 director.director.tlsenable.ref = 0650 director.director.tlsenable.type = store_bool651 director.director.tlsenable.required = false652 director.director.tlsenable.def = 0653 director.director.tlsrequire.ref = 0654 director.director.tlsrequire.type = store_bool655 director.director.tlsrequire.required = false656 director.director.tlsrequire.def = 0657 director.director.tlsverifypeer.ref = 0658 director.director.tlsverifypeer.type = store_bool659 director.director.tlsverifypeer.required = false660 director.director.tlsverifypeer.def = true661 director.director.tlscacertificatefile.ref = 0662 director.director.tlscacertificatefile.type = path663 director.director.tlscacertificatefile.required = false664 director.director.tlscacertificatefile.def = 0665 director.director.tlscacertificatedir.ref = 0666 director.director.tlscacertificatedir.type = path667 director.director.tlscacertificatedir.required = false668 director.director.tlscacertificatedir.def = 0669 director.director.tlscertificate.ref = 0670 director.director.tlscertificate.type = path671 director.director.tlscertificate.required = false672 director.director.tlscertificate.def = 0673 director.director.tlskey.ref = 0674 director.director.tlskey.type = path675 director.director.tlskey.required = false676 director.director.tlskey.def = 0677 director.director.tlsdhfile.ref = 0678 director.director.tlsdhfile.type = path679 director.director.tlsdhfile.required = false680 director.director.tlsdhfile.def = 0681 director.director.tlsallowedcn.ref = 0682 director.director.tlsallowedcn.type = store_alist_str683 director.director.tlsallowedcn.required = false684 director.director.tlsallowedcn.def = 0685 director.director.statisticsretention.ref = 0686 director.director.statisticsretention.type = Date687 director.director.statisticsretention.required = false688 director.director.statisticsretention.def = 60*60*24*31*12*5689 director.director.verid.ref = 0690 director.director.verid.type = String691 director.director.verid.required = false692 director.director.verid.def = 0693 director.console.name.ref = 0694 director.console.name.type = String695 director.console.name.required = false696 director.console.name.def = 0697 director.console.description.ref = 0698 director.console.description.type = String699 director.console.description.required = false700 director.console.description.def = 0701 director.console.password.ref = 0702 director.console.password.type = Password703 director.console.password.required = false704 director.console.password.def = 0705 director.console.jobacl.ref = Job_ACL706 director.console.jobacl.type = Acl707 director.console.jobacl.required = false708 director.console.jobacl.def = 0709 director.console.clientacl.ref = Client_ACL710 director.console.clientacl.type = Acl711 director.console.clientacl.required = false712 director.console.clientacl.def = 0713 director.console.storageacl.ref = Storage_ACL714 director.console.storageacl.type = Acl715 director.console.storageacl.required = false716 director.console.storageacl.def = 0717 director.console.scheduleacl.ref = Schedule_ACL718 director.console.scheduleacl.type = Acl719 director.console.scheduleacl.required = false720 director.console.scheduleacl.def = 0721 director.console.runacl.ref = Run_ACL722 director.console.runacl.type = Acl723 director.console.runacl.required = false724 director.console.runacl.def = 0725 director.console.poolacl.ref = Pool_ACL726 director.console.poolacl.type = Acl727 director.console.poolacl.required = false728 director.console.poolacl.def = 0729 director.console.commandacl.ref = Command_ACL730 director.console.commandacl.type = Acl731 director.console.commandacl.required = false732 director.console.commandacl.def = 0733 director.console.filesetacl.ref = FileSet_ACL734 director.console.filesetacl.type = Acl735 director.console.filesetacl.required = false736 director.console.filesetacl.def = 0737 director.console.catalogacl.ref = Catalog_ACL738 director.console.catalogacl.type = Acl739 director.console.catalogacl.required = false740 director.console.catalogacl.def = 0741 director.console.whereacl.ref = Where_ACL742 director.console.whereacl.type = Acl743 director.console.whereacl.required = false744 director.console.whereacl.def = 0745 director.console.pluginoptionsacl.ref = PluginOptions_ACL746 director.console.pluginoptionsacl.type = Acl747 director.console.pluginoptionsacl.required = false748 director.console.pluginoptionsacl.def = 0749 director.console.tlsauthenticate.ref = 0750 director.console.tlsauthenticate.type = store_bool751 director.console.tlsauthenticate.required = false752 director.console.tlsauthenticate.def = 0753 director.console.tlsenable.ref = 0754 director.console.tlsenable.type = store_bool755 director.console.tlsenable.required = false756 director.console.tlsenable.def = 0757 director.console.tlsrequire.ref = 0758 director.console.tlsrequire.type = store_bool759 director.console.tlsrequire.required = false760 director.console.tlsrequire.def = 0761 director.console.tlsverifypeer.ref = 0762 director.console.tlsverifypeer.type = store_bool763 director.console.tlsverifypeer.required = false764 director.console.tlsverifypeer.def = true765 director.console.tlscacertificatefile.ref = 0766 director.console.tlscacertificatefile.type = path767 director.console.tlscacertificatefile.required = false768 director.console.tlscacertificatefile.def = 0769 director.console.tlscacertificatedir.ref = 0770 director.console.tlscacertificatedir.type = path771 director.console.tlscacertificatedir.required = false772 director.console.tlscacertificatedir.def = 0773 director.console.tlscertificate.ref = 0774 director.console.tlscertificate.type = path775 director.console.tlscertificate.required = false776 director.console.tlscertificate.def = 0777 director.console.tlskey.ref = 0778 director.console.tlskey.type = path779 director.console.tlskey.required = false780 director.console.tlskey.def = 0781 director.console.tlsdhfile.ref = 0782 director.console.tlsdhfile.type = path783 director.console.tlsdhfile.required = false784 director.console.tlsdhfile.def = 0785 director.console.tlsallowedcn.ref = 0786 director.console.tlsallowedcn.type = store_alist_str787 director.console.tlsallowedcn.required = false788 director.console.tlsallowedcn.def = 0789 director.client.name.ref = 0790 director.client.name.type = String791 director.client.name.required = false792 director.client.name.def = 0793 director.client.description.ref = 0794 director.client.description.type = String795 director.client.description.required = false796 director.client.description.def = 0797 director.client.address.ref = 0798 director.client.address.type = String799 director.client.address.required = false800 director.client.address.def = 0801 director.client.fdaddress.ref = 0802 director.client.fdaddress.type = String803 director.client.fdaddress.required = false804 director.client.fdaddress.def = 0805 director.client.fdport.ref = 0806 director.client.fdport.type = int807 director.client.fdport.required = false808 director.client.fdport.def = 9102809 director.client.password.ref = 0810 director.client.password.type = Password811 director.client.password.required = false812 director.client.password.def = 0813 director.client.fdpassword.ref = 0814 director.client.fdpassword.type = Password815 director.client.fdpassword.required = false816 director.client.fdpassword.def = 0817 director.client.catalog.ref = R_CATALOG818 director.client.catalog.type = Resource819 director.client.catalog.required = false820 director.client.catalog.def = 0821 director.client.fileretention.ref = 0822 director.client.fileretention.type = Date823 director.client.fileretention.required = false824 director.client.fileretention.def = 60*60*24*60825 director.client.jobretention.ref = 0826 director.client.jobretention.type = Date827 director.client.jobretention.required = false828 director.client.jobretention.def = 60*60*24*180829 director.client.heartbeatinterval.ref = 0830 director.client.heartbeatinterval.type = Date831 director.client.heartbeatinterval.required = false832 director.client.heartbeatinterval.def = 0833 director.client.autoprune.ref = 0834 director.client.autoprune.type = store_bool835 director.client.autoprune.required = false836 director.client.autoprune.def = true837 director.client.maximumconcurrentjobs.ref = 0838 director.client.maximumconcurrentjobs.type = int839 director.client.maximumconcurrentjobs.required = false840 director.client.maximumconcurrentjobs.def = 1841 director.client.tlsauthenticate.ref = 0842 director.client.tlsauthenticate.type = store_bool843 director.client.tlsauthenticate.required = false844 director.client.tlsauthenticate.def = 0845 director.client.tlsenable.ref = 0846 director.client.tlsenable.type = store_bool847 director.client.tlsenable.required = false848 director.client.tlsenable.def = 0849 director.client.tlsrequire.ref = 0850 director.client.tlsrequire.type = store_bool851 director.client.tlsrequire.required = false852 director.client.tlsrequire.def = 0853 director.client.tlscacertificatefile.ref = 0854 director.client.tlscacertificatefile.type = path855 director.client.tlscacertificatefile.required = false856 director.client.tlscacertificatefile.def = 0857 director.client.tlscacertificatedir.ref = 0858 director.client.tlscacertificatedir.type = path859 director.client.tlscacertificatedir.required = false860 director.client.tlscacertificatedir.def = 0861 director.client.tlscertificate.ref = 0862 director.client.tlscertificate.type = path863 director.client.tlscertificate.required = false864 director.client.tlscertificate.def = 0865 director.client.tlskey.ref = 0866 director.client.tlskey.type = path867 director.client.tlskey.required = false868 director.client.tlskey.def = 0869 director.client.tlsallowedcn.ref = 0870 director.client.tlsallowedcn.type = store_alist_str871 director.client.tlsallowedcn.required = false872 director.client.tlsallowedcn.def = 0873 director.storagedaemon.name.ref = 0874 director.storagedaemon.name.type = String875 director.storagedaemon.name.required = false876 director.storagedaemon.name.def = 0877 director.storagedaemon.description.ref = 0878 director.storagedaemon.description.type = String879 director.storagedaemon.description.required = false880 director.storagedaemon.description.def = 0881 director.storagedaemon.sdport.ref = 0882 director.storagedaemon.sdport.type = int883 director.storagedaemon.sdport.required = false884 director.storagedaemon.sdport.def = 9103885 director.storagedaemon.address.ref = 0886 director.storagedaemon.address.type = String887 director.storagedaemon.address.required = false888 director.storagedaemon.address.def = 0889 director.storagedaemon.sdaddress.ref = 0890 director.storagedaemon.sdaddress.type = String891 director.storagedaemon.sdaddress.required = false892 director.storagedaemon.sdaddress.def = 0893 director.storagedaemon.password.ref = 0894 director.storagedaemon.password.type = Password895 director.storagedaemon.password.required = false896 director.storagedaemon.password.def = 0897 director.storagedaemon.sdpassword.ref = 0898 director.storagedaemon.sdpassword.type = Password899 director.storagedaemon.sdpassword.required = false900 director.storagedaemon.sdpassword.def = 0901 director.storagedaemon.device.ref = R_DEVICE902 director.storagedaemon.device.type = store_device903 director.storagedaemon.device.required = false904 director.storagedaemon.device.def = 0905 director.storagedaemon.mediatype.ref = 0906 director.storagedaemon.mediatype.type = String907 director.storagedaemon.mediatype.required = false908 director.storagedaemon.mediatype.def = 0909 director.storagedaemon.autochanger.ref = 0910 director.storagedaemon.autochanger.type = store_bool911 director.storagedaemon.autochanger.required = false912 director.storagedaemon.autochanger.def = 0913 director.storagedaemon.enabled.ref = 0914 director.storagedaemon.enabled.type = store_bool915 director.storagedaemon.enabled.required = false916 director.storagedaemon.enabled.def = true917 director.storagedaemon.allowcompression.ref = 0918 director.storagedaemon.allowcompression.type = store_bool919 director.storagedaemon.allowcompression.required = false920 director.storagedaemon.allowcompression.def = true921 director.storagedaemon.heartbeatinterval.ref = 0922 director.storagedaemon.heartbeatinterval.type = Date923 director.storagedaemon.heartbeatinterval.required = false924 director.storagedaemon.heartbeatinterval.def = 0925 director.storagedaemon.maximumconcurrentjobs.ref = 0926 director.storagedaemon.maximumconcurrentjobs.type = int927 director.storagedaemon.maximumconcurrentjobs.required = false928 director.storagedaemon.maximumconcurrentjobs.def = 1929 director.storagedaemon.tlsauthenticate.ref = 0930 director.storagedaemon.tlsauthenticate.type = store_bool931 director.storagedaemon.tlsauthenticate.required = false932 director.storagedaemon.tlsauthenticate.def = 0933 director.storagedaemon.tlsenable.ref = 0934 director.storagedaemon.tlsenable.type = store_bool935 director.storagedaemon.tlsenable.required = false936 director.storagedaemon.tlsenable.def = 0937 director.storagedaemon.tlsrequire.ref = 0938 director.storagedaemon.tlsrequire.type = store_bool939 director.storagedaemon.tlsrequire.required = false940 director.storagedaemon.tlsrequire.def = 0941 director.storagedaemon.tlscacertificatefile.ref = 0942 director.storagedaemon.tlscacertificatefile.type = path943 director.storagedaemon.tlscacertificatefile.required = false944 director.storagedaemon.tlscacertificatefile.def = 0945 director.storagedaemon.tlscacertificatedir.ref = 0946 director.storagedaemon.tlscacertificatedir.type = path947 director.storagedaemon.tlscacertificatedir.required = false948 director.storagedaemon.tlscacertificatedir.def = 0949 director.storagedaemon.tlscertificate.ref = 0950 director.storagedaemon.tlscertificate.type = path951 director.storagedaemon.tlscertificate.required = false952 director.storagedaemon.tlscertificate.def = 0953 director.storagedaemon.tlskey.ref = 0954 director.storagedaemon.tlskey.type = path955 director.storagedaemon.tlskey.required = false956 director.storagedaemon.tlskey.def = 0957 director.catalog.name.ref = 0958 director.catalog.name.type = String959 director.catalog.name.required = false960 director.catalog.name.def = 0961 director.catalog.description.ref = 0962 director.catalog.description.type = String963 director.catalog.description.required = false964 director.catalog.description.def = 0965 director.catalog.address.ref = 0966 director.catalog.address.type = String967 director.catalog.address.required = false968 director.catalog.address.def = 0969 director.catalog.dbaddress.ref = 0970 director.catalog.dbaddress.type = String971 director.catalog.dbaddress.required = false972 director.catalog.dbaddress.def = 0973 director.catalog.dbport.ref = 0974 director.catalog.dbport.type = int975 director.catalog.dbport.required = false976 director.catalog.dbport.def = 0977 director.catalog.password.ref = 0978 director.catalog.password.type = String979 director.catalog.password.required = false980 director.catalog.password.def = 0981 director.catalog.dbpassword.ref = 0982 director.catalog.dbpassword.type = String983 director.catalog.dbpassword.required = false984 director.catalog.dbpassword.def = 0985 director.catalog.dbuser.ref = 0986 director.catalog.dbuser.type = String987 director.catalog.dbuser.required = false988 director.catalog.dbuser.def = 0989 director.catalog.user.ref = 0990 director.catalog.user.type = String991 director.catalog.user.required = false992 director.catalog.user.def = 0993 director.catalog.dbname.ref = 0994 director.catalog.dbname.type = String995 director.catalog.dbname.required = false996 director.catalog.dbname.def = 0997 director.catalog.dbdriver.ref = 0998 director.catalog.dbdriver.type = String999 director.catalog.dbdriver.required = false1000 director.catalog.dbdriver.def = 01001 director.catalog.dbsocket.ref = 01002 director.catalog.dbsocket.type = String1003 director.catalog.dbsocket.required = false1004 director.catalog.dbsocket.def = 01005 director.catalog.multipleconnections.ref = 01006 director.catalog.multipleconnections.type = boolean1007 director.catalog.multipleconnections.required = false1008 director.catalog.multipleconnections.def = 01009 director.fileset.name.ref = 01010 director.fileset.name.type = String1011 director.fileset.name.required = false1012 director.fileset.name.def = 01013 director.fileset.description.ref = 01014 director.fileset.description.type = String1015 director.fileset.description.required = false1016 director.fileset.description.def = 01017 director.fileset.include.ref = 01018 director.fileset.include.type = store_inc1019 director.fileset.include.required = false1020 director.fileset.include.def = 01021 director.fileset.exclude.ref = 11022 director.fileset.exclude.type = store_inc1023 director.fileset.exclude.required = false1024 director.fileset.exclude.def = 01025 director.fileset.ignorefilesetchanges.ref = 01026 director.fileset.ignorefilesetchanges.type = store_bool1027 director.fileset.ignorefilesetchanges.required = false1028 director.fileset.ignorefilesetchanges.def = false1029 director.fileset.enablevss.ref = 01030 director.fileset.enablevss.type = store_bool1031 director.fileset.enablevss.required = false1032 director.fileset.enablevss.def = true1033 director.schedule.name.ref = 01034 director.schedule.name.type = String1035 director.schedule.name.required = false1036 director.schedule.name.def = 01037 director.schedule.description.ref = 01038 director.schedule.description.type = String1039 director.schedule.description.required = false1040 director.schedule.description.def = 01041 director.schedule.run.ref = 01042 director.schedule.run.type = store_run1043 director.schedule.run.required = false1044 director.schedule.run.def = 01045 director.pool.name.ref = 01046 director.pool.name.type = String1047 director.pool.name.required = false1048 director.pool.name.def = 01049 director.pool.description.ref = 01050 director.pool.description.type = String1051 director.pool.description.required = false1052 director.pool.description.def = 01053 director.pool.pooltype.ref = 01054 director.pool.pooltype.type = String1055 director.pool.pooltype.required = false1056 director.pool.pooltype.def = 01057 director.pool.labelformat.ref = 01058 director.pool.labelformat.type = String1059 director.pool.labelformat.required = false1060 director.pool.labelformat.def = 01061 director.pool.cleaningprefix.ref = 01062 director.pool.cleaningprefix.type = String1063 director.pool.cleaningprefix.required = false1064 director.pool.cleaningprefix.def = 01065 director.pool.usecatalog.ref = 01066 director.pool.usecatalog.type = store_bool1067 director.pool.usecatalog.required = false1068 director.pool.usecatalog.def = true1069 director.pool.usevolumeonce.ref = 01070 director.pool.usevolumeonce.type = store_bool1071 director.pool.usevolumeonce.required = false1072 director.pool.usevolumeonce.def = 01073 director.pool.purgeoldestvolume.ref = 01074 director.pool.purgeoldestvolume.type = store_bool1075 director.pool.purgeoldestvolume.required = false1076 director.pool.purgeoldestvolume.def = 01077 director.pool.actiononpurge.ref = 01078 director.pool.actiononpurge.type = store_actiononpurge1079 director.pool.actiononpurge.required = false1080 director.pool.actiononpurge.def = 01081 director.pool.recycleoldestvolume.ref = 01082 director.pool.recycleoldestvolume.type = store_bool1083 director.pool.recycleoldestvolume.required = false1084 director.pool.recycleoldestvolume.def = 01085 director.pool.recyclecurrentvolume.ref = 01086 director.pool.recyclecurrentvolume.type = store_bool1087 director.pool.recyclecurrentvolume.required = false1088 director.pool.recyclecurrentvolume.def = 01089 director.pool.maximumvolumes.ref = 01090 director.pool.maximumvolumes.type = int1091 director.pool.maximumvolumes.required = false1092 director.pool.maximumvolumes.def = 01093 director.pool.maximumvolumejobs.ref = 01094 director.pool.maximumvolumejobs.type = int1095 director.pool.maximumvolumejobs.required = false1096 director.pool.maximumvolumejobs.def = 01097 director.pool.maximumvolumefiles.ref = 01098 director.pool.maximumvolumefiles.type = int1099 director.pool.maximumvolumefiles.required = false1100 director.pool.maximumvolumefiles.def = 01101 director.pool.maximumvolumebytes.ref = 01102 director.pool.maximumvolumebytes.type = store_size641103 director.pool.maximumvolumebytes.required = false1104 director.pool.maximumvolumebytes.def = 01105 director.pool.catalogfiles.ref = 01106 director.pool.catalogfiles.type = store_bool1107 director.pool.catalogfiles.required = false1108 director.pool.catalogfiles.def = true1109 director.pool.volumeretention.ref = 01110 director.pool.volumeretention.type = Date1111 director.pool.volumeretention.required = false1112 director.pool.volumeretention.def = 60*60*24*3651113 director.pool.volumeuseduration.ref = 01114 director.pool.volumeuseduration.type = Date1115 director.pool.volumeuseduration.required = false1116 director.pool.volumeuseduration.def = 01117 director.pool.migrationtime.ref = 01118 director.pool.migrationtime.type = Date1119 director.pool.migrationtime.required = false1120 director.pool.migrationtime.def = 01121 director.pool.migrationhighbytes.ref = 01122 director.pool.migrationhighbytes.type = store_size641123 director.pool.migrationhighbytes.required = false1124 director.pool.migrationhighbytes.def = 01125 director.pool.migrationlowbytes.ref = 01126 director.pool.migrationlowbytes.type = store_size641127 director.pool.migrationlowbytes.required = false1128 director.pool.migrationlowbytes.def = 01129 director.pool.nextpool.ref = R_POOL1130 director.pool.nextpool.type = Resource1131 director.pool.nextpool.required = false1132 director.pool.nextpool.def = 01133 director.pool.storage.ref = R_STORAGE1134 director.pool.storage.type = store_alist_res1135 director.pool.storage.required = false1136 director.pool.storage.def = 01137 director.pool.autoprune.ref = 01138 director.pool.autoprune.type = store_bool1139 director.pool.autoprune.required = false1140 director.pool.autoprune.def = true1141 director.pool.recycle.ref = 01142 director.pool.recycle.type = store_bool1143 director.pool.recycle.required = false1144 director.pool.recycle.def = true1145 director.pool.recyclepool.ref = R_POOL1146 director.pool.recyclepool.type = Resource1147 director.pool.recyclepool.required = false1148 director.pool.recyclepool.def = 01149 director.pool.scratchpool.ref = R_POOL1150 director.pool.scratchpool.type = Resource1151 director.pool.scratchpool.required = false1152 director.pool.scratchpool.def = 01153 director.pool.copypool.ref = R_POOL1154 director.pool.copypool.type = store_alist_res1155 director.pool.copypool.required = false1156 director.pool.copypool.def = 01157 director.pool.catalog.ref = R_CATALOG1158 director.pool.catalog.type = Resource1159 director.pool.catalog.required = false1160 director.pool.catalog.def = 01161 director.pool.fileretention.ref = 01162 director.pool.fileretention.type = Date1163 director.pool.fileretention.required = false1164 director.pool.fileretention.def = 01165 director.pool.jobretention.ref = 01166 director.pool.jobretention.type = Date1167 director.pool.jobretention.required = false1168 director.pool.jobretention.def = 01169 director.counter.name.ref = 01170 director.counter.name.type = String1171 director.counter.name.required = false1172 director.counter.name.def = 01173 director.counter.description.ref = 01174 director.counter.description.type = String1175 director.counter.description.required = false1176 director.counter.description.def = 01177 director.counter.minimum.ref = 01178 director.counter.minimum.type = store_int321179 director.counter.minimum.required = false1180 director.counter.minimum.def = 01181 director.counter.maximum.ref = 01182 director.counter.maximum.type = int1183 director.counter.maximum.required = false1184 director.counter.maximum.def = INT32_MAX1185 director.counter.wrapcounter.ref = R_COUNTER1186 director.counter.wrapcounter.type = Resource1187 director.counter.wrapcounter.required = false1188 director.counter.wrapcounter.def = 01189 director.counter.catalog.ref = R_CATALOG1190 director.counter.catalog.type = Resource1191 director.counter.catalog.required = false1192 director.counter.catalog.def = 01193 director.runscript.runsonsuccess.ref = 01194 director.runscript.runsonsuccess.type = store_runscript_bool1195 director.runscript.runsonsuccess.required = false1196 director.runscript.runsonsuccess.def = 01197 director.runscript.runsonfailure.ref = 01198 director.runscript.runsonfailure.type = store_runscript_bool1199 director.runscript.runsonfailure.required = false1200 director.runscript.runsonfailure.def = 01201 director.runscript.failjobonerror.ref = 01202 director.runscript.failjobonerror.type = store_runscript_bool1203 director.runscript.failjobonerror.required = false1204 director.runscript.failjobonerror.def = 01205 director.runscript.abortjobonerror.ref = 01206 director.runscript.abortjobonerror.type = store_runscript_bool1207 director.runscript.abortjobonerror.required = false1208 director.runscript.abortjobonerror.def = 01209 director.runscript.runswhen.ref = 01210 director.runscript.runswhen.type = store_runscript_when1211 director.runscript.runswhen.required = false1212 director.runscript.runswhen.def = 0
Note:
See TracChangeset
for help on using the changeset viewer.