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