Changeset 858 for vanHelsing/trunk


Ignore:
Timestamp:
Apr 9, 2010, 10:56:07 AM (14 years ago)
Author:
tobias
Message:

visual design slightly modified. tree functions extended

Location:
vanHelsing/trunk/gui
Files:
2 added
30 edited

Legend:

Unmodified
Added
Removed
  • vanHelsing/trunk/gui/.classpath

    r854 r858  
    9595        <classpathentry kind="lib" path="WebContent/WEB-INF/lib/XmlSchema-1.4.3.jar"/>
    9696        <classpathentry kind="lib" path="WebContent/WEB-INF/lib/VanHelsing-test-client.jar"/>
     97        <classpathentry kind="con" path="com.soyatec.uml.CONTAINER"/>
    9798        <classpathentry kind="output" path="build/classes"/>
    9899</classpath>
  • vanHelsing/trunk/gui/.project

    r830 r858  
    22<projectDescription>
    33        <name>vanHelsingGUI</name>
    4         <comment></comment>
     4        <comment>@key 32303037303533312D31302076616E48656C73696E674755492F74676F65636B65 </comment>
    55        <projects>
    66        </projects>
     
    2626                        </arguments>
    2727                </buildCommand>
     28                <buildCommand>
     29                        <name>com.soyatec.additional.Builder</name>
     30                        <arguments>
     31                        </arguments>
     32                </buildCommand>
    2833        </buildSpec>
    2934        <natures>
     
    3338                <nature>org.eclipse.jdt.core.javanature</nature>
    3439                <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
     40                <nature>com.soyatec.additional.Nature</nature>
    3541        </natures>
    3642</projectDescription>
  • vanHelsing/trunk/gui/WebContent/menu.jspx

    r857 r858  
    1212     <title>Van Helsing</title>
    1313     <ice:outputStyle href="./xmlhttp/css/rime/rime.css" />
     14     <ice:outputStyle href="./css/tree.css" />
    1415     
    1516    </head>
     
    1819    <ice:form>
    1920    <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}" />
    2027                <ice:commandButton id="saveRes"
    2128                value="update resource"
    2229                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}" />
    2633        </ice:panelGroup>
    2734   
     
    4552                                        </f:facet>
    4653                                        <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
    5057                                                <ice:commandLink actionListener="#{configurationBean.userObjectItemNodeSelected}">
    5158                                                <f:param name="userObject.resId" value="#{item.userObject.userObject.resId}"/>
    5259                                            <ice:outputText id="knoten" value="#{item.userObject.userObject.value}"/>
    53                                         </ice:commandLink>
    54                                         <!-- </ice:panelGroup> -->
     60                                                        </ice:commandLink>
     61                                        </ice:panelGroup>
    5562                                        </f:facet>
    5663                                </ice:treeNode>
     
    6976                                                         <ice:outputText value="Key" />
    7077                                                 </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}" />
    7280                                        </ice:column>
    7381                                        <ice:column>
     
    7684                                                </f:facet>
    7785                                                <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>                                               
    86100                                        </ice:column>
    87101                                </ice:dataTable>
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/BeanUtil.java

    r857 r858  
    3838                return bundle;
    3939        }
     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        }
    4045        //getRenderer returns rendererType based on properties
    4146        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){
    4250                String daemon = "director";
    4351                String res = "inputText";
     
    5159                key = key.toLowerCase();
    5260                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;
    5569                }
    56                 if (!(result[0].equals("0"))){
    57                         return "selectOneMenu";
    58                 }
    59                
     70                if (i == 2) return result[2];
    6071                return res;
    6172        }
     73       
    6274    //Statusmeldungen an den Client
    6375    public static void setInfoMessage(String client, String message){
     
    7890        }
    7991       
     92        public static String getAccessType(String type){
     93                if (type.equals("jobdefs")) return "job";
     94                return type;
     95        }
     96       
    8097}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ConfigurationBean.java

    r857 r858  
    66import javax.faces.event.ActionEvent;
    77import javax.faces.event.ValueChangeEvent;
     8import javax.faces.model.SelectItem;
    89import javax.swing.tree.DefaultMutableTreeNode;
    910import javax.swing.tree.DefaultTreeModel;
     
    2021        private DefaultTreeModel tree;
    2122        private ArrayList<ViewItem> selectedObject;
     23        private String selectedId;
    2224
    2325        public ConfigurationBean() {
     
    3739
    3840                Client c = new Client();
    39                 String[] nodes = { "Director", "Storage", "Catalog", "Autochanger",
     41                String[] nodes = { "Director", "Storage", "Autochanger",
    4042                                "Client", "FileSet", "FDClient", "Schedule", "SDStorage",
    4143                                "Console", "Catalog", "SDDevice", "Job", "JobDefs", "Messages",
     
    4446                setTree(super.createTree(root, nodes, "Configuration"));
    4547
    46                 // forall header wird eine ResourceList[] angefragt
     48                // \forall header wird eine ResourceList[] angefragt
     49               
    4750                for (int i = 0; i < tree.getChildCount(root); i++) {
    4851                        header = (DefaultMutableTreeNode) tree.getChild(root, i);
     
    6871                                }
    6972                        }
    70                 }
     73                } 
    7174                /*
    7275                 * for (int i = 0; i < tree.getChildCount(root); i++){ header =
     
    9699                selectedObject = new ArrayList<ViewItem>();
    97100                String Id = BeanUtil.getRequestParameter("userObject.resId");
     101                String selected = BeanUtil.getRequestParameter("ice.event.shift");
    98102                node = getNode(Id, tree);
     103                if (selected.equals("true")){
     104                        ((UserObjectItemType)node.getUserObject()).switchSelected();
     105                }
    99106                String type = ((UserObjectItem) ((UserObjectItemType) node
    100107                                .getUserObject()).getUserObject()).getResType();
     
    104111                                .getUserObject()).getUserObject())).getDirector();
    105112                String classType = "de.dass_it.vanhelsing.gui.items." + type + "Item";
     113                String accessType = BeanUtil.getAccessType(type.toLowerCase());
    106114                // Daten aus dem UserObjectItem extrahieren
    107115                try {
     
    127135                                        vi.setResName(resName);
    128136                                        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                                        }
    133157                                        selectedObject.add(vi);
    134158                                }
     
    139163                }
    140164        }
     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        }
    141181        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                }
    142231               
    143232        }
     
    146235        }
    147236       
     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       
    148244        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                }
    180280        }
    181281
     
    195295                this.selectedObject = selectedObject;
    196296        }
     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        }
    197305
    198306}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/PropertyBundle.java

    r857 r858  
    2525                                initialize();
    2626                        }
     27                        key = key.toLowerCase();
    2728                        return properties.getString(key);
    2829                } catch (Exception e) {
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/SimpleResource.java

    r844 r858  
    55
    66public  class SimpleResource{
     7        /**
     8         * @uml.property  name="resourceInfo"
     9         * @uml.associationEnd 
     10         */
    711        private ResourceInfo resourceInfo;
     12        /**
     13         * @uml.property  name="resourceAttributeType"
     14         * @uml.associationEnd  multiplicity="(0 -1)"
     15         */
    816        private ResourceAttributeType[] resourceAttributeType;
    917       
     
    1422        }
    1523       
     24        /**
     25         * @return
     26         * @uml.property  name="resourceInfo"
     27         */
    1628        public ResourceInfo getResourceInfo() {
    1729                return resourceInfo;
    1830        }
     31        /**
     32         * @param resourceInfo
     33         * @uml.property  name="resourceInfo"
     34         */
    1935        public void setResourceInfo(ResourceInfo resourceInfo) {
    2036                this.resourceInfo = resourceInfo;
    2137        }
     38        /**
     39         * @return
     40         * @uml.property  name="resourceAttributeType"
     41         */
    2242        public ResourceAttributeType[] getResourceAttributeType() {
    2343                return resourceAttributeType;
    2444        }
     45        /**
     46         * @param resourceAttributeType
     47         * @uml.property  name="resourceAttributeType"
     48         */
    2549        public void setResourceAttributeType(
    2650                        ResourceAttributeType[] resourceAttributeType) {
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/TreeNavigation.java

    r856 r858  
    1717 */
    1818public class TreeNavigation extends BeanUtil {
     19        /**
     20         * @uml.property  name="tree"
     21         * @uml.associationEnd 
     22         */
    1923        private DefaultTreeModel tree;
    2024        //private Logger logger = Logger.getLogger(this.getClass());
     
    3034                UserObjectItem uoi = new TreeItem("Configuration");
    3135                uoi.setResType("Tree");
    32                 item.setUserObjectItem(uoi);
     36                item.setUserObject(uoi);
    3337                root.setUserObject(item);
    3438               
     
    6872                        }
    6973                        //ItemObjekt erzeugen und an das UserObjekt referenzieren
    70                         userObject.setUserObjectItem((UserObjectItem)o);
     74                        userObject.setUserObject((UserObjectItem)o);
    7175                        //Eine Referenz auf das UserObjekt wird an das Nodeobjekt übergeben
    7276                        node.setUserObject(userObject);
     
    126130                        ((ItemType)o).setValue(((ItemType)o).getResName());
    127131                        //ItemObjekt erzeugen und an das UserObjekt referenzieren
    128                         userObject.setUserObjectItem((UserObjectItem)o);
     132                        userObject.setUserObject((UserObjectItem)o);
    129133                        //Eine Referenz auf das UserObjekt wird an das Nodeobjekt übergeben
    130134                        node.setUserObject(userObject);
     
    182186                                if(!(key.isEmpty() && value.isEmpty())){
    183187                                        key = key.replaceAll(" ", "");
     188                                        key = key.toLowerCase();
    184189                                        key = key.replaceFirst(new Character(key.charAt(0)).toString(),
    185190                                                        new Character(Character.toUpperCase(key.charAt(0))).toString());
     
    228233                                return node;
    229234                        }
     235
     236
    230237                }
    231238                return null;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ValidationParser.java

    r856 r858  
    3333                                continue;
    3434                        }
     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                        }
    3542                        if (line.startsWith("};")){
    3643                                state = "";
     
    117124        }
    118125        private static String getJavaReq(String s){
    119                 if ( s.equals("ITEM_REQUIRED") ){
     126                if ( s.contains("ITEM_REQUIRED") ){
    120127                        s = "true";
    121128                } else {
     
    133140                return s;
    134141        }
     142        /**
     143         * @author   tgoecke
     144         */
    135145        private enum prettyNames{
    136146                CATALOG ("cat_items", "catalog"),
     
    143153                RUNSCRIPT ("runscript_items", "runscript"),
    144154                SCHEDULE ("sch_items", "schedule"),
    145                 STORAGEDAEMON ("store_items", "storagedaemon"),
     155                STORAGE ("store_items", "storage"),
    146156                AUTOCHANGER ("changer_items", "autochanger"),
    147                 DEVICE ("dev_items", "device");
     157                DEVICE ("dev_items", "device"),
     158                JOB("job_items", "job"),
     159                MESSAGE("msgs_item","message");
    148160               
    149161                private String ugly;
     
    155167                }
    156168        }
     169        /**
     170         * @author   tgoecke
     171         */
    157172        private enum conf2type{
     173                /**
     174                 * @uml.property  name="sTOREPOOL"
     175                 * @uml.associationEnd 
     176                 */
    158177                STOREPOOL ("store_pool", "boolean"),
     178                /**
     179                 * @uml.property  name="sTOREBIT"
     180                 * @uml.associationEnd 
     181                 */
    159182                STOREBIT ("store_bit","boolean"),
     183                /**
     184                 * @uml.property  name="sTORE_STR"
     185                 * @uml.associationEnd 
     186                 */
    160187                STORE_STR ("store_str","String"),
     188                /**
     189                 * @uml.property  name="sTORE_NAME"
     190                 * @uml.associationEnd 
     191                 */
    161192                STORE_NAME ("store_name", "String"),
     193                /**
     194                 * @uml.property  name="sTORE_STRNAME"
     195                 * @uml.associationEnd 
     196                 */
    162197                STORE_STRNAME ("store_strname", "String"),
     198                /**
     199                 * @uml.property  name="sTORE_PINT32"
     200                 * @uml.associationEnd 
     201                 */
    163202                STORE_PINT32 ("store_pint32", "int"),
     203                /**
     204                 * @uml.property  name="sTORE_SIZE"
     205                 * @uml.associationEnd 
     206                 */
    164207                STORE_SIZE ("store_size", "int"),
     208                /**
     209                 * @uml.property  name="sTORE_DIR"
     210                 * @uml.associationEnd 
     211                 */
    165212                STORE_DIR ("store_dir", "path"),
     213                /**
     214                 * @uml.property  name="sTORE_PASSWORD"
     215                 * @uml.associationEnd 
     216                 */
    166217                STORE_PASSWORD ("store_password", "Password"),
     218                /**
     219                 * @uml.property  name="sTORE_TIME"
     220                 * @uml.associationEnd 
     221                 */
    167222                STORE_TIME ("store_time", "Date"),
     223                /**
     224                 * @uml.property  name="sTORE_ACL"
     225                 * @uml.associationEnd 
     226                 */
    168227                STORE_ACL ("store_acl", "Acl"),
     228                /**
     229                 * @uml.property  name="sTORE_RES"
     230                 * @uml.associationEnd 
     231                 */
    169232                STORE_RES ("store_res", "Resource");
    170233               
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ViewItem.java

    r857 r858  
    66
    77public class ViewItem extends ItemType implements UserObjectItem {
     8        /**
     9         * @uml.property  name="key"
     10         */
    811        private String key;
     12        /**
     13         * @uml.property  name="keyValue"
     14         */
    915        private String keyValue;
     16        /**
     17         * @uml.property  name="inputText"
     18         */
    1019        private String inputText;
     20        /**
     21         * @uml.property  name="selectOneMenu"
     22         */
    1123        private String selectOneMenu;
     24        /**
     25         * @uml.property  name="radioGroup"
     26         */
    1227        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         */
    1435        private String renderer;
     36        /**
     37         * @uml.property  name="dataType"
     38         */
    1539        private String dataType;
     40        /**
     41         * @uml.property  name="keyValueList"
     42         * @uml.associationEnd  multiplicity="(0 -1)"
     43         */
    1644        private SelectItem[] keyValueList;
    1745       
     
    2149        }
    2250       
    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         */
    3171        public String getRenderer() {
    3272                return renderer;
    3373        }
    3474
     75        /**
     76         * @param renderer
     77         * @uml.property  name="renderer"
     78         */
    3579        public void setRenderer(String renderer) {
    3680                this.renderer = renderer;
    3781        }
    3882
     83        /**
     84         * @return
     85         * @uml.property  name="dataType"
     86         */
    3987        public String getDataType() {
    4088                return dataType;
    4189        }
    4290
     91        /**
     92         * @param dataType
     93         * @uml.property  name="dataType"
     94         */
    4395        public void setDataType(String dataType) {
    4496                this.dataType = dataType;
     
    60112        }
    61113        //eigene Felder für die Tabellenspalten
     114        /**
     115         * @param key
     116         * @uml.property  name="key"
     117         */
    62118        public void setKey(String key) {
    63119                this.key = key;
    64120        }
    65121
     122        /**
     123         * @return
     124         * @uml.property  name="key"
     125         */
    66126        public String getKey() {
    67127                return key;
    68128        }
    69129       
     130        /**
     131         * @return
     132         * @uml.property  name="keyValue"
     133         */
    70134        public String getKeyValue() {
    71135                return keyValue;
    72136        }
    73137
     138        /**
     139         * @param keyValue
     140         * @uml.property  name="keyValue"
     141         */
    74142        public void setKeyValue(String keyValue) {
    75143                this.keyValue = keyValue;
    76144        }
    77145
     146        /**
     147         * @param inputText
     148         * @uml.property  name="inputText"
     149         */
    78150        public void setInputText(String inputText) {
    79151                this.inputText = inputText;
    80152        }
    81153
     154        /**
     155         * @return
     156         * @uml.property  name="inputText"
     157         */
    82158        public String getInputText() {
    83159                return inputText;
    84160        }
    85161
     162        /**
     163         * @param selectOneMenu
     164         * @uml.property  name="selectOneMenu"
     165         */
    86166        public void setSelectOneMenu(String selectOneMenu) {
    87167                this.selectOneMenu = selectOneMenu;
    88168        }
    89169
     170        /**
     171         * @return
     172         * @uml.property  name="selectOneMenu"
     173         */
    90174        public String getSelectOneMenu() {
    91175                return selectOneMenu;
    92176        }
    93177       
    94         //TODO: RendererFlag überarbeiten
     178
    95179        public void setRendererFlag(String r){
    96180                if (r.equals("inputText")) {
     
    104188                        this.radioGroup = null;
    105189                        //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                        */     
    111195                       
    112196                }
     
    118202        }
    119203
     204        /**
     205         * @return
     206         * @uml.property  name="keyValueList"
     207         */
    120208        public SelectItem[] getKeyValueList() {
    121209                return keyValueList;
    122210        }
    123211
     212        /**
     213         * @param keyValueList
     214         * @uml.property  name="keyValueList"
     215         */
    124216        public void setKeyValueList(SelectItem[] keyValueList) {
    125217                this.keyValueList = keyValueList;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/CatalogItem.java

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
     2
    23public class CatalogItem extends ItemType implements UserObjectItem{
    34
     5        /**
     6         * @uml.property  name="name"
     7         */
    48        private String name;
     9        /**
     10         * @uml.property  name="password"
     11         */
    512        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         */
    720        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
    1158
    1259        public CatalogItem(){}
    1360        public CatalogItem(String name, String dbname, String user, String password){
    1461                setName(name);
    15                 setDbName(dbname);
     62                setDbname(dbname);
    1663                setUser(user);
    1764                setPassword(password);
    1865        }
     66        /**
     67         * @return
     68         * @uml.property  name="name"
     69         */
    1970        public String getName() {
    2071                return name;
    2172        }
     73        /**
     74         * @param name
     75         * @uml.property  name="name"
     76         */
    2277        public void setName(String name) {
    2378                this.name = name;
    2479        }
     80        /**
     81         * @return
     82         * @uml.property  name="password"
     83         */
    2584        public String getPassword() {
    2685                return password;
    2786        }
     87        /**
     88         * @param password
     89         * @uml.property  name="password"
     90         */
    2891        public void setPassword(String password) {
    2992                this.password = password;
    3093        }
    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         */
    37112        public String getUser() {
    38113                return user;
    39114        }
     115        /**
     116         * @param user
     117         * @uml.property  name="user"
     118         */
    40119        public void setUser(String user) {
    41120                this.user = user;
    42121        }
    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       
    61252}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ClientItem.java

    r847 r858  
    22public class ClientItem extends ItemType implements UserObjectItem{
    33
     4        /**
     5         * @uml.property  name="name"
     6         */
    47        private String name;
     8        /**
     9         * @uml.property  name="address"
     10         */
    511        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         */
    719        private String catalog;
     20        /**
     21         * @uml.property  name="password"
     22         */
    823        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         */
    1343        private String priority;
    1444       
    1545        public ClientItem() {}
    1646
     47        /**
     48         * @return
     49         * @uml.property  name="name"
     50         */
    1751        public String getName() {
    1852                return name;
    1953        }
    2054
     55        /**
     56         * @param name
     57         * @uml.property  name="name"
     58         */
    2159        public void setName(String name) {
    2260                this.name = name;
    2361        }
    2462
     63        /**
     64         * @return
     65         * @uml.property  name="address"
     66         */
    2567        public String getAddress() {
    2668                return address;
    2769        }
    2870
     71        /**
     72         * @param address
     73         * @uml.property  name="address"
     74         */
    2975        public void setAddress(String address) {
    3076                this.address = address;
    3177        }
    3278
    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         */
    4184        public String getCatalog() {
    4285                return catalog;
    4386        }
    4487
     88        /**
     89         * @param catalog
     90         * @uml.property  name="catalog"
     91         */
    4592        public void setCatalog(String catalog) {
    4693                this.catalog = catalog;
    4794        }
    4895
     96        /**
     97         * @return
     98         * @uml.property  name="password"
     99         */
    49100        public String getPassword() {
    50101                return password;
    51102        }
    52103
     104        /**
     105         * @param password
     106         * @uml.property  name="password"
     107         */
    53108        public void setPassword(String password) {
    54109                this.password = password;
    55110        }
    56111
    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         */
    89116        public String getPriority() {
    90117                return priority;
    91118        }
    92119
     120        /**
     121         * @param priority
     122         * @uml.property  name="priority"
     123         */
    93124        public void setPriority(String priority) {
    94125                this.priority = priority;
    95126        }
    96127
     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
    97208}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConfigItem.java

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class ConfigItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="id"
     5         */
    36        private int id;
     7        /**
     8         * @uml.property  name="ressource"
     9         */
    410        private String ressource;
     11        /**
     12         * @uml.property  name="key"
     13         */
    514        private String key;
     15        /**
     16         * @uml.property  name="value"
     17         */
    618        private String value;
    719       
     
    1628        }
    1729
     30        /**
     31         * @param value
     32         * @uml.property  name="value"
     33         */
    1834        public void setValue(String value) {
    1935                this.value = value;
    2036        }
    2137
     38        /**
     39         * @return
     40         * @uml.property  name="value"
     41         */
    2242        public String getValue() {
    2343                return value;
    2444        }
    2545
     46        /**
     47         * @param key
     48         * @uml.property  name="key"
     49         */
    2650        public void setKey(String key) {
    2751                this.key = key;
    2852        }
    2953
     54        /**
     55         * @return
     56         * @uml.property  name="key"
     57         */
    3058        public String getKey() {
    3159                return key;
    3260        }
    3361
     62        /**
     63         * @param ressource
     64         * @uml.property  name="ressource"
     65         */
    3466        public void setRessource(String ressource) {
    3567                this.ressource = ressource;
    3668        }
    3769
     70        /**
     71         * @return
     72         * @uml.property  name="ressource"
     73         */
    3874        public String getRessource() {
    3975                return ressource;
     
    4480        }
    4581
     82        /**
     83         * @param id
     84         * @uml.property  name="id"
     85         */
    4686        public void setId(int id) {
    4787                this.id = id;
    4888        }
    4989
     90        /**
     91         * @return
     92         * @uml.property  name="id"
     93         */
    5094        public int getId() {
    5195                return id;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConsoleItem.java

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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class CounterItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
     7        /**
     8         * @uml.property  name="minimum"
     9         */
    410        private String minimum;
     11        /**
     12         * @uml.property  name="maximum"
     13         */
    514        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         */
    722        private String catalog;
    823
     
    1227        }
    1328       
     29        /**
     30         * @return
     31         * @uml.property  name="name"
     32         */
    1433        public String getName() {
    1534                return name;
    1635        }
     36        /**
     37         * @param name
     38         * @uml.property  name="name"
     39         */
    1740        public void setName(String name) {
    1841                this.name = name;
    1942        }
     43        /**
     44         * @return
     45         * @uml.property  name="minimum"
     46         */
    2047        public String getMinimum() {
    2148                return minimum;
    2249        }
     50        /**
     51         * @param minimum
     52         * @uml.property  name="minimum"
     53         */
    2354        public void setMinimum(String minimum) {
    2455                this.minimum = minimum;
    2556        }
     57        /**
     58         * @return
     59         * @uml.property  name="maximum"
     60         */
    2661        public String getMaximum() {
    2762                return maximum;
    2863        }
     64        /**
     65         * @param maximum
     66         * @uml.property  name="maximum"
     67         */
    2968        public void setMaximum(String maximum) {
    3069                this.maximum = maximum;
    3170        }
    32         public String getWrapCounter() {
    33                 return wrapCounter;
     71        /**
     72         * @return
     73         * @uml.property  name="wrapcounter"
     74         */
     75        public String getWrapcounter() {
     76                return wrapcounter;
    3477        }
    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;
    3784        }
     85        /**
     86         * @return
     87         * @uml.property  name="catalog"
     88         */
    3889        public String getCatalog() {
    3990                return catalog;
    4091        }
     92        /**
     93         * @param catalog
     94         * @uml.property  name="catalog"
     95         */
    4196        public void setCatalog(String catalog) {
    4297                this.catalog = catalog;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/DirectorItem.java

    r848 r858  
    22
    33public 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;
    2380
    2481         public DirectorItem(){}
    2582
    26          public DirectorItem(String name, String password, String messages, String workingDirectory,
    27                          String pidDrectory, String queryFile){
     83         public DirectorItem(String name, String password, String messages, String workingdirectory,
     84                         String piddrectory, String queryfile){
    2885               
    2986         }
    3087
     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         */
    31100        public void setName(String name) {
    32101                this.name = name;
    33102        }
    34103
    35         public String getName() {
    36                 return name;
    37         }
     104        /**
     105         * @return
     106         * @uml.property  name="description"
     107         */
    38108        public String getDescription() {
    39                         return description;
    40                 }
    41 
     109                return description;
     110        }
     111
     112        /**
     113         * @param description
     114         * @uml.property  name="description"
     115         */
    42116        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
    181392
    182393
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDClientItem.java

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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class FDDirectorItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
     7        /**
     8         * @uml.property  name="password"
     9         */
    410        private String password;
     11        /**
     12         * @uml.property  name="monitor"
     13         */
    514        private String monitor;
    615
     
    1221        }
    1322       
     23        /**
     24         * @return
     25         * @uml.property  name="name"
     26         */
    1427        public String getName() {
    1528                return name;
    1629        }
     30        /**
     31         * @param name
     32         * @uml.property  name="name"
     33         */
    1734        public void setName(String name) {
    1835                this.name = name;
    1936        }
     37        /**
     38         * @return
     39         * @uml.property  name="password"
     40         */
    2041        public String getPassword() {
    2142                return password;
    2243        }
     44        /**
     45         * @param password
     46         * @uml.property  name="password"
     47         */
    2348        public void setPassword(String password) {
    2449                this.password = password;
    2550        }
     51        /**
     52         * @return
     53         * @uml.property  name="monitor"
     54         */
    2655        public String getMonitor() {
    2756                return monitor;
    2857        }
     58        /**
     59         * @param monitor
     60         * @uml.property  name="monitor"
     61         */
    2962        public void setMonitor(String monitor) {
    3063                this.monitor = monitor;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FileSetItem.java

    r846 r858  
    22
    33public class FileSetItem extends ItemType implements UserObjectItem {
     4        /**
     5         * @uml.property  name="name"
     6         */
    47        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         */
    719        private String include;
     20        /**
     21         * @uml.property  name="exclude"
     22         */
    823        private String exclude;
    924       
    1025        public FileSetItem() {}
    1126
     27        /**
     28         * @return
     29         * @uml.property  name="name"
     30         */
    1231        public String getName() {
    1332                return name;
    1433        }
    1534
     35        /**
     36         * @param name
     37         * @uml.property  name="name"
     38         */
    1639        public void setName(String name) {
    1740                this.name = name;
     
    1942
    2043        public String getIgnoreFileSetChanges() {
    21                 return ignoreFileSetChanges;
     44                return ignorefilesetchanges;
    2245        }
    2346
    2447        public void setIgnoreFileSetChanges(String ignoreFileSetChanges) {
    25                 this.ignoreFileSetChanges = ignoreFileSetChanges;
     48                this.ignorefilesetchanges = ignoreFileSetChanges;
    2649        }
    2750
    28         public String getEnableVSS() {
    29                 return enableVSS;
     51        /**
     52         * @return
     53         * @uml.property  name="enablevss"
     54         */
     55        public String getEnablevss() {
     56                return enablevss;
    3057        }
    3158
    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;
    3465        }
    3566
     67        /**
     68         * @return
     69         * @uml.property  name="include"
     70         */
    3671        public String getInclude() {
    3772                return include;
    3873        }
    3974
     75        /**
     76         * @param include
     77         * @uml.property  name="include"
     78         */
    4079        public void setInclude(String include) {
    4180                this.include = include;
    4281        }
    4382
     83        /**
     84         * @return
     85         * @uml.property  name="exclude"
     86         */
    4487        public String getExclude() {
    4588                return exclude;
    4689        }
    4790
     91        /**
     92         * @param exclude
     93         * @uml.property  name="exclude"
     94         */
    4895        public void setExclude(String exclude) {
    4996                this.exclude = exclude;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobDefsItem.java

    r846 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public 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         */
    3847        private String name;
     848        /**
     849         * @uml.property  name="enabled"
     850         */
    4851        private String enabled;
     852        /**
     853         * @uml.property  name="type"
     854         */
    5855        private String type;
     856        /**
     857         * @uml.property  name="level"
     858         */
    6859        private String level;
     860        /**
     861         * @uml.property  name="accurate"
     862         */
    7863        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         */
    10875        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         */
    12883        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         */
    14891        private String messages;
     892        /**
     893         * @uml.property  name="pool"
     894         */
    15895        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         */
    19911        private String schedule;
     912        /**
     913         * @uml.property  name="storage"
     914         */
    20915        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         */
    421003        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         */
    471023        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         */
    591071        private String run;
     1072        /**
     1073         * @uml.property  name="priority"
     1074         */
    601075        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;
    631084
    641085        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        }
    671089
    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         }
    4301090}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/JobItem.java

    r847 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class JobItem extends ItemType implements UserObjectItem{
     3
     4        /**
     5         * @uml.property  name="name"
     6         */
    37        private String name;
     8        /**
     9         * @uml.property  name="enabled"
     10         */
    411        private String enabled;
     12        /**
     13         * @uml.property  name="description"
     14         */
    515        private String description;
     16        /**
     17         * @uml.property  name="type"
     18         */
    619        private String type;
     20        /**
     21         * @uml.property  name="level"
     22         */
    723        private String level;
     24        /**
     25         * @uml.property  name="accurate"
     26         */
    827        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         */
    1139        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         */
    1347        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         */
    1555        private String messages;
     56        /**
     57         * @uml.property  name="pool"
     58         */
    1659        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         */
    2075        private String schedule;
     76        /**
     77         * @uml.property  name="storage"
     78         */
    2179        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         */
    43167        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         */
    48187        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         */
    60235        private String run;
     236        /**
     237         * @uml.property  name="priority"
     238         */
    61239        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;
    64248
    65249        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         */
    70257        public String getName() {
    71258                return name;
    72259        }
     260        /**
     261         * @param name
     262         * @uml.property  name="name"
     263         */
    73264        public void setName(String name) {
    74265                this.name = name;
    75266        }
     267        /**
     268         * @return
     269         * @uml.property  name="enabled"
     270         */
    76271        public String getEnabled() {
    77272                return enabled;
    78273        }
     274        /**
     275         * @param enabled
     276         * @uml.property  name="enabled"
     277         */
    79278        public void setEnabled(String enabled) {
    80279                this.enabled = enabled;
    81280        }
     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         */
    82292        public void setDescription(String description) {
    83293                this.description = description;
    84294        }
    85         public String getDescription() {
    86                 return description;
    87         }
     295        /**
     296         * @return
     297         * @uml.property  name="type"
     298         */
    88299        public String getType() {
    89300                return type;
    90301        }
     302        /**
     303         * @param type
     304         * @uml.property  name="type"
     305         */
    91306        public void setType(String type) {
    92307                this.type = type;
    93308        }
     309        /**
     310         * @return
     311         * @uml.property  name="level"
     312         */
    94313        public String getLevel() {
    95314                return level;
    96315        }
     316        /**
     317         * @param level
     318         * @uml.property  name="level"
     319         */
    97320        public void setLevel(String level) {
    98321                this.level = level;
    99322        }
     323        /**
     324         * @return
     325         * @uml.property  name="accurate"
     326         */
    100327        public String getAccurate() {
    101328                return accurate;
    102329        }
     330        /**
     331         * @param accurate
     332         * @uml.property  name="accurate"
     333         */
    103334        public void setAccurate(String accurate) {
    104335                this.accurate = accurate;
    105336        }
    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         */
    118369        public String getBootstrap() {
    119370                return bootstrap;
    120371        }
     372        /**
     373         * @param bootstrap
     374         * @uml.property  name="bootstrap"
     375         */
    121376        public void setBootstrap(String bootstrap) {
    122377                this.bootstrap = bootstrap;
    123378        }
    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         */
    130397        public String getClient() {
    131398                return client;
    132399        }
     400        /**
     401         * @param client
     402         * @uml.property  name="client"
     403         */
    133404        public void setClient(String client) {
    134405                this.client = client;
    135406        }
    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         */
    142425        public String getMessages() {
    143426                return messages;
    144427        }
     428        /**
     429         * @param messages
     430         * @uml.property  name="messages"
     431         */
    145432        public void setMessages(String messages) {
    146433                this.messages = messages;
    147434        }
     435        /**
     436         * @return
     437         * @uml.property  name="pool"
     438         */
    148439        public String getPool() {
    149440                return pool;
    150441        }
     442        /**
     443         * @param pool
     444         * @uml.property  name="pool"
     445         */
    151446        public void setPool(String pool) {
    152447                this.pool = pool;
    153448        }
    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         */
    172495        public String getSchedule() {
    173496                return schedule;
    174497        }
     498        /**
     499         * @param schedule
     500         * @uml.property  name="schedule"
     501         */
    175502        public void setSchedule(String schedule) {
    176503                this.schedule = schedule;
    177504        }
     505        /**
     506         * @return
     507         * @uml.property  name="storage"
     508         */
    178509        public String getStorage() {
    179510                return storage;
    180511        }
     512        /**
     513         * @param storage
     514         * @uml.property  name="storage"
     515         */
    181516        public void setStorage(String storage) {
    182517                this.storage = storage;
    183518        }
    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         */
    311818        public String getWhere() {
    312819                return where;
    313820        }
     821        /**
     822         * @param where
     823         * @uml.property  name="where"
     824         */
    314825        public void setWhere(String where) {
    315826                this.where = where;
    316827        }
    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         */
    341888        public String getReplace() {
    342889                return replace;
    343890        }
     891        /**
     892         * @param replace
     893         * @uml.property  name="replace"
     894         */
    344895        public void setReplace(String replace) {
    345896                this.replace = replace;
    346897        }
    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         */
    4131056        public String getRun() {
    4141057                return run;
    4151058        }
     1059        /**
     1060         * @param run
     1061         * @uml.property  name="run"
     1062         */
    4161063        public void setRun(String run) {
    4171064                this.run = run;
    4181065        }
     1066        /**
     1067         * @return
     1068         * @uml.property  name="priority"
     1069         */
    4191070        public String getPriority() {
    4201071                return priority;
    4211072        }
     1073        /**
     1074         * @param priority
     1075         * @uml.property  name="priority"
     1076         */
    4221077        public void setPriority(String priority) {
    4231078                this.priority = priority;
    4241079        }
    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;
    4361107        }
    4371108}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/MessagesItem.java

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class MessagesItem extends ItemType implements UserObjectItem{
     3        /**
     4                 * @uml.property  name="name"
     5                 */
    36        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                 */
    514        private String destination;
    615
     
    918        public MessagesItem(String name, String mailCommand, String destination){
    1019                setName(name);
    11                 setMailCommand(mailCommand);
     20                setMailcommand(mailCommand);
    1221                setDestination(destination);
    1322        }
    1423
     24                /**
     25                 * @param name
     26                 * @uml.property  name="name"
     27                 */
    1528                public void setName(String name) {
    1629                        this.name = name;
    1730                }
    1831
     32                /**
     33                 * @return
     34                 * @uml.property  name="name"
     35                 */
    1936                public String getName() {
    2037                        return name;
    2138                }
    2239
    23                 public void setMailCommand(String mailCommand) {
    24                         this.mailCommand = mailCommand;
     40                /**
     41                 * @param mailcommand
     42                 * @uml.property  name="mailcommand"
     43                 */
     44                public void setMailcommand(String mailcommand) {
     45                        this.mailcommand = mailcommand;
    2546                }
    2647
    27                 public String getMailCommand() {
    28                         return mailCommand;
     48                /**
     49                 * @return
     50                 * @uml.property  name="mailcommand"
     51                 */
     52                public String getMailcommand() {
     53                        return mailcommand;
    2954                }
    3055
     56                /**
     57                 * @param destination
     58                 * @uml.property  name="destination"
     59                 */
    3160                public void setDestination(String destination) {
    3261                        this.destination = destination;
    3362                }
    3463
     64                /**
     65                 * @return
     66                 * @uml.property  name="destination"
     67                 */
    3568                public String getDestination() {
    3669                        return destination;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/PoolItem.java

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class PoolItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
    4         private String maximumVolumes;
    5         private String poolType;
     7        /**
     8         * @uml.property  name="maximumvolumes"
     9         */
     10        private String maximumvolumes;
     11        /**
     12         * @uml.property  name="pooltype"
     13         */
     14        private String pooltype;
     15        /**
     16         * @uml.property  name="storage"
     17         */
    618        private String storage;
    7         private String useVolumeOnce;
    8         private String maximumVolumeJobs;
    9         private String maximumVolumeFiles;
    10         private String maximumVolumeBytes;
    11         private String volumeUseDuration;
    12         private String catalogFiles;
    13         private String autoPrune;
    14         private String volumeRetention;
    15         private String actionOnPurge;
    16         private String scratchPool;
    17         private String recyclePool;
     19        /**
     20         * @uml.property  name="usevolumeonce"
     21         */
     22        private String usevolumeonce;
     23        /**
     24         * @uml.property  name="maximumvolumejobs"
     25         */
     26        private String maximumvolumejobs;
     27        /**
     28         * @uml.property  name="maximumvolumefiles"
     29         */
     30        private String maximumvolumefiles;
     31        /**
     32         * @uml.property  name="maximumvolumebytes"
     33         */
     34        private String maximumvolumebytes;
     35        /**
     36         * @uml.property  name="volumeuseduration"
     37         */
     38        private String volumeuseduration;
     39        /**
     40         * @uml.property  name="catalogfiles"
     41         */
     42        private String catalogfiles;
     43        /**
     44         * @uml.property  name="autoprune"
     45         */
     46        private String autoprune;
     47        /**
     48         * @uml.property  name="volumeretention"
     49         */
     50        private String volumeretention;
     51        /**
     52         * @uml.property  name="actiononpurge"
     53         */
     54        private String actiononpurge;
     55        /**
     56         * @uml.property  name="scratchpool"
     57         */
     58        private String scratchpool;
     59        /**
     60         * @uml.property  name="recyclepool"
     61         */
     62        private String recyclepool;
     63        /**
     64         * @uml.property  name="recycle"
     65         */
    1866        private String recycle;
    19         private String recycleOldestVolume;
    20         private String recycleCurrentVolume;
    21         private String purgeOldestVolume;
    22         private String fileRetention;
    23         private String jobRetention;
    24         private String cleaningPrefix;
    25         private String labelFormat;
     67        /**
     68         * @uml.property  name="recycleoldestvolume"
     69         */
     70        private String recycleoldestvolume;
     71        /**
     72         * @uml.property  name="recyclecurrentvolume"
     73         */
     74        private String recyclecurrentvolume;
     75        /**
     76         * @uml.property  name="purgeoldestvolume"
     77         */
     78        private String purgeoldestvolume;
     79        /**
     80         * @uml.property  name="fileretention"
     81         */
     82        private String fileretention;
     83        /**
     84         * @uml.property  name="jobretention"
     85         */
     86        private String jobretention;
     87        /**
     88         * @uml.property  name="cleaningprefix"
     89         */
     90        private String cleaningprefix;
     91        /**
     92         * @uml.property  name="labelformat"
     93         */
     94        private String labelformat;
    2695
    2796        public PoolItem() {}
    2897       
    29         public PoolItem(String name, String poolType){
     98        public PoolItem(String name, String pooltype){
    3099        setName(name);
    31         setPoolType(poolType);
    32         }
    33 
     100        setPooltype(pooltype);
     101        }
     102
     103        /**
     104         * @return
     105         * @uml.property  name="name"
     106         */
    34107        public String getName() {
    35108                return name;
    36109        }
    37110
     111        /**
     112         * @param name
     113         * @uml.property  name="name"
     114         */
    38115        public void setName(String name) {
    39116                this.name = name;
    40117        }
    41118
    42         public String getMaximumVolumes() {
    43                 return maximumVolumes;
    44         }
    45 
    46         public void setMaximumVolumes(String maximumVolumes) {
    47                 this.maximumVolumes = maximumVolumes;
    48         }
    49 
    50         public String getPoolType() {
    51                 return poolType;
    52         }
    53 
    54         public void setPoolType(String poolType) {
    55                 this.poolType = poolType;
    56         }
    57 
     119        /**
     120         * @return
     121         * @uml.property  name="maximumvolumes"
     122         */
     123        public String getMaximumvolumes() {
     124                return maximumvolumes;
     125        }
     126
     127        /**
     128         * @param maximumvolumes
     129         * @uml.property  name="maximumvolumes"
     130         */
     131        public void setMaximumvolumes(String maximumvolumes) {
     132                this.maximumvolumes = maximumvolumes;
     133        }
     134
     135        /**
     136         * @return
     137         * @uml.property  name="pooltype"
     138         */
     139        public String getPooltype() {
     140                return pooltype;
     141        }
     142
     143        /**
     144         * @param pooltype
     145         * @uml.property  name="pooltype"
     146         */
     147        public void setPooltype(String pooltype) {
     148                this.pooltype = pooltype;
     149        }
     150
     151        /**
     152         * @return
     153         * @uml.property  name="storage"
     154         */
    58155        public String getStorage() {
    59156                return storage;
    60157        }
    61158
     159        /**
     160         * @param storage
     161         * @uml.property  name="storage"
     162         */
    62163        public void setStorage(String storage) {
    63164                this.storage = storage;
    64165        }
    65166
    66         public String getUseVolumeOnce() {
    67                 return useVolumeOnce;
    68         }
    69 
    70         public void setUseVolumeOnce(String useVolumeOnce) {
    71                 this.useVolumeOnce = useVolumeOnce;
    72         }
    73 
    74         public String getMaximumVolumeJobs() {
    75                 return maximumVolumeJobs;
    76         }
    77 
    78         public void setMaximumVolumeJobs(String maximumVolumeJobs) {
    79                 this.maximumVolumeJobs = maximumVolumeJobs;
    80         }
    81 
    82         public String getMaximumVolumeFiles() {
    83                 return maximumVolumeFiles;
    84         }
    85 
    86         public void setMaximumVolumeFiles(String maximumVolumeFiles) {
    87                 this.maximumVolumeFiles = maximumVolumeFiles;
    88         }
    89 
    90         public String getMaximumVolumeBytes() {
    91                 return maximumVolumeBytes;
    92         }
    93 
    94         public void setMaximumVolumeBytes(String maximumVolumeBytes) {
    95                 this.maximumVolumeBytes = maximumVolumeBytes;
    96         }
    97 
    98         public String getVolumeUseDuration() {
    99                 return volumeUseDuration;
    100         }
    101 
    102         public void setVolumeUseDuration(String volumeUseDuration) {
    103                 this.volumeUseDuration = volumeUseDuration;
    104         }
    105 
    106         public String getCatalogFiles() {
    107                 return catalogFiles;
    108         }
    109 
    110         public void setCatalogFiles(String catalogFiles) {
    111                 this.catalogFiles = catalogFiles;
    112         }
    113 
    114         public String getAutoPrune() {
    115                 return autoPrune;
    116         }
    117 
    118         public void setAutoPrune(String autoPrune) {
    119                 this.autoPrune = autoPrune;
    120         }
    121 
    122         public String getVolumeRetention() {
    123                 return volumeRetention;
    124         }
    125 
    126         public void setVolumeRetention(String volumeRetention) {
    127                 this.volumeRetention = volumeRetention;
    128         }
    129 
    130         public String getActionOnPurge() {
    131                 return actionOnPurge;
    132         }
    133 
    134         public void setActionOnPurge(String actionOnPurge) {
    135                 this.actionOnPurge = actionOnPurge;
    136         }
    137 
    138         public String getScratchPool() {
    139                 return scratchPool;
    140         }
    141 
    142         public void setScratchPool(String scratchPool) {
    143                 this.scratchPool = scratchPool;
    144         }
    145 
    146         public String getRecyclePool() {
    147                 return recyclePool;
    148         }
    149 
    150         public void setRecyclePool(String recyclePool) {
    151                 this.recyclePool = recyclePool;
    152         }
    153 
     167        /**
     168         * @return
     169         * @uml.property  name="usevolumeonce"
     170         */
     171        public String getUsevolumeonce() {
     172                return usevolumeonce;
     173        }
     174
     175        /**
     176         * @param usevolumeonce
     177         * @uml.property  name="usevolumeonce"
     178         */
     179        public void setUsevolumeonce(String usevolumeonce) {
     180                this.usevolumeonce = usevolumeonce;
     181        }
     182
     183        /**
     184         * @return
     185         * @uml.property  name="maximumvolumejobs"
     186         */
     187        public String getMaximumvolumejobs() {
     188                return maximumvolumejobs;
     189        }
     190
     191        /**
     192         * @param maximumvolumejobs
     193         * @uml.property  name="maximumvolumejobs"
     194         */
     195        public void setMaximumvolumejobs(String maximumvolumejobs) {
     196                this.maximumvolumejobs = maximumvolumejobs;
     197        }
     198
     199        /**
     200         * @return
     201         * @uml.property  name="maximumvolumefiles"
     202         */
     203        public String getMaximumvolumefiles() {
     204                return maximumvolumefiles;
     205        }
     206
     207        /**
     208         * @param maximumvolumefiles
     209         * @uml.property  name="maximumvolumefiles"
     210         */
     211        public void setMaximumvolumefiles(String maximumvolumefiles) {
     212                this.maximumvolumefiles = maximumvolumefiles;
     213        }
     214
     215        /**
     216         * @return
     217         * @uml.property  name="maximumvolumebytes"
     218         */
     219        public String getMaximumvolumebytes() {
     220                return maximumvolumebytes;
     221        }
     222
     223        /**
     224         * @param maximumvolumebytes
     225         * @uml.property  name="maximumvolumebytes"
     226         */
     227        public void setMaximumvolumebytes(String maximumvolumebytes) {
     228                this.maximumvolumebytes = maximumvolumebytes;
     229        }
     230
     231        /**
     232         * @return
     233         * @uml.property  name="volumeuseduration"
     234         */
     235        public String getVolumeuseduration() {
     236                return volumeuseduration;
     237        }
     238
     239        /**
     240         * @param volumeuseduration
     241         * @uml.property  name="volumeuseduration"
     242         */
     243        public void setVolumeuseduration(String volumeuseduration) {
     244                this.volumeuseduration = volumeuseduration;
     245        }
     246
     247        /**
     248         * @return
     249         * @uml.property  name="catalogfiles"
     250         */
     251        public String getCatalogfiles() {
     252                return catalogfiles;
     253        }
     254
     255        /**
     256         * @param catalogfiles
     257         * @uml.property  name="catalogfiles"
     258         */
     259        public void setCatalogfiles(String catalogfiles) {
     260                this.catalogfiles = catalogfiles;
     261        }
     262
     263        /**
     264         * @return
     265         * @uml.property  name="autoprune"
     266         */
     267        public String getAutoprune() {
     268                return autoprune;
     269        }
     270
     271        /**
     272         * @param autoprune
     273         * @uml.property  name="autoprune"
     274         */
     275        public void setAutoprune(String autoprune) {
     276                this.autoprune = autoprune;
     277        }
     278
     279        /**
     280         * @return
     281         * @uml.property  name="volumeretention"
     282         */
     283        public String getVolumeretention() {
     284                return volumeretention;
     285        }
     286
     287        /**
     288         * @param volumeretention
     289         * @uml.property  name="volumeretention"
     290         */
     291        public void setVolumeretention(String volumeretention) {
     292                this.volumeretention = volumeretention;
     293        }
     294
     295        /**
     296         * @return
     297         * @uml.property  name="actiononpurge"
     298         */
     299        public String getActiononpurge() {
     300                return actiononpurge;
     301        }
     302
     303        /**
     304         * @param actiononpurge
     305         * @uml.property  name="actiononpurge"
     306         */
     307        public void setActiononpurge(String actiononpurge) {
     308                this.actiononpurge = actiononpurge;
     309        }
     310
     311        /**
     312         * @return
     313         * @uml.property  name="scratchpool"
     314         */
     315        public String getScratchpool() {
     316                return scratchpool;
     317        }
     318
     319        /**
     320         * @param scratchpool
     321         * @uml.property  name="scratchpool"
     322         */
     323        public void setScratchpool(String scratchpool) {
     324                this.scratchpool = scratchpool;
     325        }
     326
     327        /**
     328         * @return
     329         * @uml.property  name="recyclepool"
     330         */
     331        public String getRecyclepool() {
     332                return recyclepool;
     333        }
     334
     335        /**
     336         * @param recyclepool
     337         * @uml.property  name="recyclepool"
     338         */
     339        public void setRecyclepool(String recyclepool) {
     340                this.recyclepool = recyclepool;
     341        }
     342
     343        /**
     344         * @return
     345         * @uml.property  name="recycle"
     346         */
    154347        public String getRecycle() {
    155348                return recycle;
    156349        }
    157350
     351        /**
     352         * @param recycle
     353         * @uml.property  name="recycle"
     354         */
    158355        public void setRecycle(String recycle) {
    159356                this.recycle = recycle;
    160357        }
    161358
    162         public String getRecycleOldestVolume() {
    163                 return recycleOldestVolume;
    164         }
    165 
    166         public void setRecycleOldestVolume(String recycleOldestVolume) {
    167                 this.recycleOldestVolume = recycleOldestVolume;
    168         }
    169 
    170         public String getRecycleCurrentVolume() {
    171                 return recycleCurrentVolume;
    172         }
    173 
    174         public void setRecycleCurrentVolume(String recycleCurrentVolume) {
    175                 this.recycleCurrentVolume = recycleCurrentVolume;
    176         }
    177 
    178         public String getPurgeOldestVolume() {
    179                 return purgeOldestVolume;
    180         }
    181 
    182         public void setPurgeOldestVolume(String purgeOldestVolume) {
    183                 this.purgeOldestVolume = purgeOldestVolume;
    184         }
    185 
    186         public String getFileRetention() {
    187                 return fileRetention;
    188         }
    189 
    190         public void setFileRetention(String fileRetention) {
    191                 this.fileRetention = fileRetention;
    192         }
    193 
    194         public String getJobRetention() {
    195                 return jobRetention;
    196         }
    197 
    198         public void setJobRetention(String jobRetention) {
    199                 this.jobRetention = jobRetention;
    200         }
    201 
    202         public String getCleaningPrefix() {
    203                 return cleaningPrefix;
    204         }
    205 
    206         public void setCleaningPrefix(String cleaningPrefix) {
    207                 this.cleaningPrefix = cleaningPrefix;
    208         }
    209 
    210         public String getLabelFormat() {
    211                 return labelFormat;
    212         }
    213 
    214         public void setLabelFormat(String labelFormat) {
    215                 this.labelFormat = labelFormat;
     359        /**
     360         * @return
     361         * @uml.property  name="recycleoldestvolume"
     362         */
     363        public String getRecycleoldestvolume() {
     364                return recycleoldestvolume;
     365        }
     366
     367        /**
     368         * @param recycleoldestvolume
     369         * @uml.property  name="recycleoldestvolume"
     370         */
     371        public void setRecycleoldestvolume(String recycleoldestvolume) {
     372                this.recycleoldestvolume = recycleoldestvolume;
     373        }
     374
     375        /**
     376         * @return
     377         * @uml.property  name="recyclecurrentvolume"
     378         */
     379        public String getRecyclecurrentvolume() {
     380                return recyclecurrentvolume;
     381        }
     382
     383        /**
     384         * @param recyclecurrentvolume
     385         * @uml.property  name="recyclecurrentvolume"
     386         */
     387        public void setRecyclecurrentvolume(String recyclecurrentvolume) {
     388                this.recyclecurrentvolume = recyclecurrentvolume;
     389        }
     390
     391        /**
     392         * @return
     393         * @uml.property  name="purgeoldestvolume"
     394         */
     395        public String getPurgeoldestvolume() {
     396                return purgeoldestvolume;
     397        }
     398
     399        /**
     400         * @param purgeoldestvolume
     401         * @uml.property  name="purgeoldestvolume"
     402         */
     403        public void setPurgeoldestvolume(String purgeoldestvolume) {
     404                this.purgeoldestvolume = purgeoldestvolume;
     405        }
     406
     407        /**
     408         * @return
     409         * @uml.property  name="fileretention"
     410         */
     411        public String getFileretention() {
     412                return fileretention;
     413        }
     414
     415        /**
     416         * @param fileretention
     417         * @uml.property  name="fileretention"
     418         */
     419        public void setFileretention(String fileretention) {
     420                this.fileretention = fileretention;
     421        }
     422
     423        /**
     424         * @return
     425         * @uml.property  name="jobretention"
     426         */
     427        public String getJobretention() {
     428                return jobretention;
     429        }
     430
     431        /**
     432         * @param jobretention
     433         * @uml.property  name="jobretention"
     434         */
     435        public void setJobretention(String jobretention) {
     436                this.jobretention = jobretention;
     437        }
     438
     439        /**
     440         * @return
     441         * @uml.property  name="cleaningprefix"
     442         */
     443        public String getCleaningprefix() {
     444                return cleaningprefix;
     445        }
     446
     447        /**
     448         * @param cleaningprefix
     449         * @uml.property  name="cleaningprefix"
     450         */
     451        public void setCleaningprefix(String cleaningprefix) {
     452                this.cleaningprefix = cleaningprefix;
     453        }
     454
     455        /**
     456         * @return
     457         * @uml.property  name="labelformat"
     458         */
     459        public String getLabelformat() {
     460                return labelformat;
     461        }
     462
     463        /**
     464         * @param labelformat
     465         * @uml.property  name="labelformat"
     466         */
     467        public void setLabelformat(String labelformat) {
     468                this.labelformat = labelformat;
    216469        }
    217470}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDDeviceItem.java

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class SDDeviceItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
    4         private String archiveDevice;
    5         private String deviceType;
    6         private String mediaType;
     7        /**
     8         * @uml.property  name="archivedevice"
     9         */
     10        private String archivedevice;
     11        /**
     12         * @uml.property  name="devicetype"
     13         */
     14        private String devicetype;
     15        /**
     16         * @uml.property  name="mediatype"
     17         */
     18        private String mediatype;
     19        /**
     20         * @uml.property  name="autochanger"
     21         */
    722        private String autochanger;
    8         private String changerDevice;
    9         private String changerCommand;
    10         private String alertCommand;
    11         private String driveIndex;
     23        /**
     24         * @uml.property  name="changerdevice"
     25         */
     26        private String changerdevice;
     27        /**
     28         * @uml.property  name="changercommand"
     29         */
     30        private String changercommand;
     31        /**
     32         * @uml.property  name="alertcommand"
     33         */
     34        private String alertcommand;
     35        /**
     36         * @uml.property  name="driveindex"
     37         */
     38        private String driveindex;
     39        /**
     40         * @uml.property  name="autoselect"
     41         */
    1242        private String autoselect;
    13         private String maximumConcurentJobs;
    14         private String maximumChangerWait;
    15         private String maximumRewindWait;
    16         private String maximumOpenWait;
    17         private String alwaysOpen;
    18         private String volumePollInterval;
    19         private String closeonPoll;
     43        /**
     44         * @uml.property  name="maximumconcurentjobs"
     45         */
     46        private String maximumconcurentjobs;
     47        /**
     48         * @uml.property  name="maximumchangerwait"
     49         */
     50        private String maximumchangerwait;
     51        /**
     52         * @uml.property  name="maximumrewindwait"
     53         */
     54        private String maximumrewindwait;
     55        /**
     56         * @uml.property  name="maximumopenwait"
     57         */
     58        private String maximumopenwait;
     59        /**
     60         * @uml.property  name="alwaysopen"
     61         */
     62        private String alwaysopen;
     63        /**
     64         * @uml.property  name="volumepollinterval"
     65         */
     66        private String volumepollinterval;
     67        /**
     68         * @uml.property  name="closeonpoll"
     69         */
     70        private String closeonpoll;
    2071        //private String maximumOpenWait;
     72        /**
     73         * @uml.property  name="removablemedia"
     74         */
    2175        private String removablemedia;
     76        /**
     77         * @uml.property  name="randomaccess"
     78         */
    2279        private String randomaccess;
    23         private String requiresMount;
    24         private String mountPoint;
    25         private String mountCommand;
    26         private String unmountCommand;
    27         private String blockChecksum;
     80        /**
     81         * @uml.property  name="requiresmount"
     82         */
     83        private String requiresmount;
     84        /**
     85         * @uml.property  name="mountpoint"
     86         */
     87        private String mountpoint;
     88        /**
     89         * @uml.property  name="mountcommand"
     90         */
     91        private String mountcommand;
     92        /**
     93         * @uml.property  name="unmountcommand"
     94         */
     95        private String unmountcommand;
     96        /**
     97         * @uml.property  name="blockchecksum"
     98         */
     99        private String blockchecksum;
     100        /**
     101         * @uml.property  name="minimumblocksize"
     102         */
    28103        private String minimumblocksize;
     104        /**
     105         * @uml.property  name="maximumblocksize"
     106         */
    29107        private String maximumblocksize;
    30         private String hardwareEndofMedium;
    31         private String fastForwardSpaceFile;
    32         private String useMTIOCGET;
    33         private String bsfAtEOM;
    34         private String twoEOF;
    35         private String backwardSpaceRecord;
    36         private String backwardSpaceFile;
    37         private String forwardSpaceRecord;
    38         private String forwardSpaceFile;
    39         private String offlineOnUnmount;
    40         private String maximumConcurrentJobs;
    41         private String maximumVolumeSize;
    42         private String maximumFileSize;
    43         private String blockPositioning;
    44         private String maximumNetworkBufferSize;
    45         private String maximumSpoolSize;
    46         private String maximumJobSpoolSize;
    47         private String spoolDirectory;
    48         private String maximumPartSize;
     108        /**
     109         * @uml.property  name="hardwareendofmedium"
     110         */
     111        private String hardwareendofmedium;
     112        /**
     113         * @uml.property  name="fastforwardspacefile"
     114         */
     115        private String fastforwardspacefile;
     116        /**
     117         * @uml.property  name="usemtiocget"
     118         */
     119        private String usemtiocget;
     120        /**
     121         * @uml.property  name="bsfateom"
     122         */
     123        private String bsfateom;
     124        /**
     125         * @uml.property  name="twoeof"
     126         */
     127        private String twoeof;
     128        /**
     129         * @uml.property  name="backwardspacerecord"
     130         */
     131        private String backwardspacerecord;
     132        /**
     133         * @uml.property  name="backwardspacefile"
     134         */
     135        private String backwardspacefile;
     136        /**
     137         * @uml.property  name="forwardspacerecord"
     138         */
     139        private String forwardspacerecord;
     140        /**
     141         * @uml.property  name="forwardspacefile"
     142         */
     143        private String forwardspacefile;
     144        /**
     145         * @uml.property  name="offlineonunmount"
     146         */
     147        private String offlineonunmount;
     148        /**
     149         * @uml.property  name="maximumconcurrentjobs"
     150         */
     151        private String maximumconcurrentjobs;
     152        /**
     153         * @uml.property  name="maximumvolumesize"
     154         */
     155        private String maximumvolumesize;
     156        /**
     157         * @uml.property  name="maximumfilesize"
     158         */
     159        private String maximumfilesize;
     160        /**
     161         * @uml.property  name="blockpositioning"
     162         */
     163        private String blockpositioning;
     164        /**
     165         * @uml.property  name="maximumnetworkbuffersize"
     166         */
     167        private String maximumnetworkbuffersize;
     168        /**
     169         * @uml.property  name="maximumspoolsize"
     170         */
     171        private String maximumspoolsize;
     172        /**
     173         * @uml.property  name="maximumjobspoolsize"
     174         */
     175        private String maximumjobspoolsize;
     176        /**
     177         * @uml.property  name="spooldirectory"
     178         */
     179        private String spooldirectory;
     180        /**
     181         * @uml.property  name="maximumpartsize"
     182         */
     183        private String maximumpartsize;
    49184       
    50185        public SDDeviceItem(){}
    51186
     187        /**
     188         * @return
     189         * @uml.property  name="name"
     190         */
    52191        public String getName() {
    53192                return name;
    54193        }
    55194
     195        /**
     196         * @param name
     197         * @uml.property  name="name"
     198         */
    56199        public void setName(String name) {
    57200                this.name = name;
    58201        }
    59202
    60         public String getArchiveDevice() {
    61                 return archiveDevice;
    62         }
    63 
    64         public void setArchiveDevice(String archiveDevice) {
    65                 this.archiveDevice = archiveDevice;
    66         }
    67 
    68         public String getDeviceType() {
    69                 return deviceType;
    70         }
    71 
    72         public void setDeviceType(String deviceType) {
    73                 this.deviceType = deviceType;
    74         }
    75 
    76         public String getMediaType() {
    77                 return mediaType;
    78         }
    79 
    80         public void setMediaType(String mediaType) {
    81                 this.mediaType = mediaType;
    82         }
    83 
     203        /**
     204         * @return
     205         * @uml.property  name="archivedevice"
     206         */
     207        public String getArchivedevice() {
     208                return archivedevice;
     209        }
     210
     211        /**
     212         * @param archivedevice
     213         * @uml.property  name="archivedevice"
     214         */
     215        public void setArchivedevice(String archivedevice) {
     216                this.archivedevice = archivedevice;
     217        }
     218
     219        /**
     220         * @return
     221         * @uml.property  name="devicetype"
     222         */
     223        public String getDevicetype() {
     224                return devicetype;
     225        }
     226
     227        /**
     228         * @param devicetype
     229         * @uml.property  name="devicetype"
     230         */
     231        public void setDevicetype(String devicetype) {
     232                this.devicetype = devicetype;
     233        }
     234
     235        /**
     236         * @return
     237         * @uml.property  name="mediatype"
     238         */
     239        public String getMediatype() {
     240                return mediatype;
     241        }
     242
     243        /**
     244         * @param mediatype
     245         * @uml.property  name="mediatype"
     246         */
     247        public void setMediatype(String mediatype) {
     248                this.mediatype = mediatype;
     249        }
     250
     251        /**
     252         * @return
     253         * @uml.property  name="autochanger"
     254         */
    84255        public String getAutochanger() {
    85256                return autochanger;
    86257        }
    87258
     259        /**
     260         * @param autochanger
     261         * @uml.property  name="autochanger"
     262         */
    88263        public void setAutochanger(String autochanger) {
    89264                this.autochanger = autochanger;
    90265        }
    91266
    92         public String getChangerDevice() {
    93                 return changerDevice;
    94         }
    95 
    96         public void setChangerDevice(String changerDevice) {
    97                 this.changerDevice = changerDevice;
    98         }
    99 
    100         public String getChangerCommand() {
    101                 return changerCommand;
    102         }
    103 
    104         public void setChangerCommand(String changerCommand) {
    105                 this.changerCommand = changerCommand;
    106         }
    107 
    108         public String getAlertCommand() {
    109                 return alertCommand;
    110         }
    111 
    112         public void setAlertCommand(String alertCommand) {
    113                 this.alertCommand = alertCommand;
    114         }
    115 
    116         public String getDriveIndex() {
    117                 return driveIndex;
    118         }
    119 
    120         public void setDriveIndex(String driveIndex) {
    121                 this.driveIndex = driveIndex;
    122         }
    123 
     267        /**
     268         * @return
     269         * @uml.property  name="changerdevice"
     270         */
     271        public String getChangerdevice() {
     272                return changerdevice;
     273        }
     274
     275        /**
     276         * @param changerdevice
     277         * @uml.property  name="changerdevice"
     278         */
     279        public void setChangerdevice(String changerdevice) {
     280                this.changerdevice = changerdevice;
     281        }
     282
     283        /**
     284         * @return
     285         * @uml.property  name="changercommand"
     286         */
     287        public String getChangercommand() {
     288                return changercommand;
     289        }
     290
     291        /**
     292         * @param changercommand
     293         * @uml.property  name="changercommand"
     294         */
     295        public void setChangercommand(String changercommand) {
     296                this.changercommand = changercommand;
     297        }
     298
     299        /**
     300         * @return
     301         * @uml.property  name="alertcommand"
     302         */
     303        public String getAlertcommand() {
     304                return alertcommand;
     305        }
     306
     307        /**
     308         * @param alertcommand
     309         * @uml.property  name="alertcommand"
     310         */
     311        public void setAlertcommand(String alertcommand) {
     312                this.alertcommand = alertcommand;
     313        }
     314
     315        /**
     316         * @return
     317         * @uml.property  name="driveindex"
     318         */
     319        public String getDriveindex() {
     320                return driveindex;
     321        }
     322
     323        /**
     324         * @param driveindex
     325         * @uml.property  name="driveindex"
     326         */
     327        public void setDriveindex(String driveindex) {
     328                this.driveindex = driveindex;
     329        }
     330
     331        /**
     332         * @return
     333         * @uml.property  name="autoselect"
     334         */
    124335        public String getAutoselect() {
    125336                return autoselect;
    126337        }
    127338
     339        /**
     340         * @param autoselect
     341         * @uml.property  name="autoselect"
     342         */
    128343        public void setAutoselect(String autoselect) {
    129344                this.autoselect = autoselect;
    130345        }
    131346
    132         public String getMaximumConcurentJobs() {
    133                 return maximumConcurentJobs;
    134         }
    135 
    136         public void setMaximumConcurentJobs(String maximumConcurentJobs) {
    137                 this.maximumConcurentJobs = maximumConcurentJobs;
    138         }
    139 
    140         public String getMaximumChangerWait() {
    141                 return maximumChangerWait;
    142         }
    143 
    144         public void setMaximumChangerWait(String maximumChangerWait) {
    145                 this.maximumChangerWait = maximumChangerWait;
    146         }
    147 
    148         public String getMaximumRewindWait() {
    149                 return maximumRewindWait;
    150         }
    151 
    152         public void setMaximumRewindWait(String maximumRewindWait) {
    153                 this.maximumRewindWait = maximumRewindWait;
    154         }
    155 
    156         public String getMaximumOpenWait() {
    157                 return maximumOpenWait;
    158         }
    159 
    160         public void setMaximumOpenWait(String maximumOpenWait) {
    161                 this.maximumOpenWait = maximumOpenWait;
    162         }
    163 
    164         public String getAlwaysOpen() {
    165                 return alwaysOpen;
    166         }
    167 
    168         public void setAlwaysOpen(String alwaysOpen) {
    169                 this.alwaysOpen = alwaysOpen;
    170         }
    171 
    172         public String getVolumePollInterval() {
    173                 return volumePollInterval;
    174         }
    175 
    176         public void setVolumePollInterval(String volumePollInterval) {
    177                 this.volumePollInterval = volumePollInterval;
    178         }
    179 
    180         public String getCloseonPoll() {
    181                 return closeonPoll;
    182         }
    183 
    184         public void setCloseonPoll(String closeonPoll) {
    185                 this.closeonPoll = closeonPoll;
    186         }
    187 
     347        /**
     348         * @return
     349         * @uml.property  name="maximumconcurentjobs"
     350         */
     351        public String getMaximumconcurentjobs() {
     352                return maximumconcurentjobs;
     353        }
     354
     355        /**
     356         * @param maximumconcurentjobs
     357         * @uml.property  name="maximumconcurentjobs"
     358         */
     359        public void setMaximumconcurentjobs(String maximumconcurentjobs) {
     360                this.maximumconcurentjobs = maximumconcurentjobs;
     361        }
     362
     363        /**
     364         * @return
     365         * @uml.property  name="maximumchangerwait"
     366         */
     367        public String getMaximumchangerwait() {
     368                return maximumchangerwait;
     369        }
     370
     371        /**
     372         * @param maximumchangerwait
     373         * @uml.property  name="maximumchangerwait"
     374         */
     375        public void setMaximumchangerwait(String maximumchangerwait) {
     376                this.maximumchangerwait = maximumchangerwait;
     377        }
     378
     379        /**
     380         * @return
     381         * @uml.property  name="maximumrewindwait"
     382         */
     383        public String getMaximumrewindwait() {
     384                return maximumrewindwait;
     385        }
     386
     387        /**
     388         * @param maximumrewindwait
     389         * @uml.property  name="maximumrewindwait"
     390         */
     391        public void setMaximumrewindwait(String maximumrewindwait) {
     392                this.maximumrewindwait = maximumrewindwait;
     393        }
     394
     395        /**
     396         * @return
     397         * @uml.property  name="maximumopenwait"
     398         */
     399        public String getMaximumopenwait() {
     400                return maximumopenwait;
     401        }
     402
     403        /**
     404         * @param maximumopenwait
     405         * @uml.property  name="maximumopenwait"
     406         */
     407        public void setMaximumopenwait(String maximumopenwait) {
     408                this.maximumopenwait = maximumopenwait;
     409        }
     410
     411        /**
     412         * @return
     413         * @uml.property  name="alwaysopen"
     414         */
     415        public String getAlwaysopen() {
     416                return alwaysopen;
     417        }
     418
     419        /**
     420         * @param alwaysopen
     421         * @uml.property  name="alwaysopen"
     422         */
     423        public void setAlwaysopen(String alwaysopen) {
     424                this.alwaysopen = alwaysopen;
     425        }
     426
     427        /**
     428         * @return
     429         * @uml.property  name="volumepollinterval"
     430         */
     431        public String getVolumepollinterval() {
     432                return volumepollinterval;
     433        }
     434
     435        /**
     436         * @param volumepollinterval
     437         * @uml.property  name="volumepollinterval"
     438         */
     439        public void setVolumepollinterval(String volumepollinterval) {
     440                this.volumepollinterval = volumepollinterval;
     441        }
     442
     443        /**
     444         * @return
     445         * @uml.property  name="closeonpoll"
     446         */
     447        public String getCloseonpoll() {
     448                return closeonpoll;
     449        }
     450
     451        /**
     452         * @param closeonpoll
     453         * @uml.property  name="closeonpoll"
     454         */
     455        public void setCloseonpoll(String closeonpoll) {
     456                this.closeonpoll = closeonpoll;
     457        }
     458
     459        /**
     460         * @return
     461         * @uml.property  name="removablemedia"
     462         */
    188463        public String getRemovablemedia() {
    189464                return removablemedia;
    190465        }
    191466
     467        /**
     468         * @param removablemedia
     469         * @uml.property  name="removablemedia"
     470         */
    192471        public void setRemovablemedia(String removablemedia) {
    193472                this.removablemedia = removablemedia;
    194473        }
    195474
     475        /**
     476         * @return
     477         * @uml.property  name="randomaccess"
     478         */
    196479        public String getRandomaccess() {
    197480                return randomaccess;
    198481        }
    199482
     483        /**
     484         * @param randomaccess
     485         * @uml.property  name="randomaccess"
     486         */
    200487        public void setRandomaccess(String randomaccess) {
    201488                this.randomaccess = randomaccess;
    202489        }
    203490
    204         public String getRequiresMount() {
    205                 return requiresMount;
    206         }
    207 
    208         public void setRequiresMount(String requiresMount) {
    209                 this.requiresMount = requiresMount;
    210         }
    211 
    212         public String getMountPoint() {
    213                 return mountPoint;
    214         }
    215 
    216         public void setMountPoint(String mountPoint) {
    217                 this.mountPoint = mountPoint;
    218         }
    219 
    220         public String getMountCommand() {
    221                 return mountCommand;
    222         }
    223 
    224         public void setMountCommand(String mountCommand) {
    225                 this.mountCommand = mountCommand;
    226         }
    227 
    228         public String getUnmountCommand() {
    229                 return unmountCommand;
    230         }
    231 
    232         public void setUnmountCommand(String unmountCommand) {
    233                 this.unmountCommand = unmountCommand;
    234         }
    235 
    236         public String getBlockChecksum() {
    237                 return blockChecksum;
    238         }
    239 
    240         public void setBlockChecksum(String blockChecksum) {
    241                 this.blockChecksum = blockChecksum;
    242         }
    243 
     491        /**
     492         * @return
     493         * @uml.property  name="requiresmount"
     494         */
     495        public String getRequiresmount() {
     496                return requiresmount;
     497        }
     498
     499        /**
     500         * @param requiresmount
     501         * @uml.property  name="requiresmount"
     502         */
     503        public void setRequiresmount(String requiresmount) {
     504                this.requiresmount = requiresmount;
     505        }
     506
     507        /**
     508         * @return
     509         * @uml.property  name="mountpoint"
     510         */
     511        public String getMountpoint() {
     512                return mountpoint;
     513        }
     514
     515        /**
     516         * @param mountpoint
     517         * @uml.property  name="mountpoint"
     518         */
     519        public void setMountpoint(String mountpoint) {
     520                this.mountpoint = mountpoint;
     521        }
     522
     523        /**
     524         * @return
     525         * @uml.property  name="mountcommand"
     526         */
     527        public String getMountcommand() {
     528                return mountcommand;
     529        }
     530
     531        /**
     532         * @param mountcommand
     533         * @uml.property  name="mountcommand"
     534         */
     535        public void setMountcommand(String mountcommand) {
     536                this.mountcommand = mountcommand;
     537        }
     538
     539        /**
     540         * @return
     541         * @uml.property  name="unmountcommand"
     542         */
     543        public String getUnmountcommand() {
     544                return unmountcommand;
     545        }
     546
     547        /**
     548         * @param unmountcommand
     549         * @uml.property  name="unmountcommand"
     550         */
     551        public void setUnmountcommand(String unmountcommand) {
     552                this.unmountcommand = unmountcommand;
     553        }
     554
     555        /**
     556         * @return
     557         * @uml.property  name="blockchecksum"
     558         */
     559        public String getBlockchecksum() {
     560                return blockchecksum;
     561        }
     562
     563        /**
     564         * @param blockchecksum
     565         * @uml.property  name="blockchecksum"
     566         */
     567        public void setBlockchecksum(String blockchecksum) {
     568                this.blockchecksum = blockchecksum;
     569        }
     570
     571        /**
     572         * @return
     573         * @uml.property  name="minimumblocksize"
     574         */
    244575        public String getMinimumblocksize() {
    245576                return minimumblocksize;
    246577        }
    247578
     579        /**
     580         * @param minimumblocksize
     581         * @uml.property  name="minimumblocksize"
     582         */
    248583        public void setMinimumblocksize(String minimumblocksize) {
    249584                this.minimumblocksize = minimumblocksize;
    250585        }
    251586
     587        /**
     588         * @return
     589         * @uml.property  name="maximumblocksize"
     590         */
    252591        public String getMaximumblocksize() {
    253592                return maximumblocksize;
    254593        }
    255594
     595        /**
     596         * @param maximumblocksize
     597         * @uml.property  name="maximumblocksize"
     598         */
    256599        public void setMaximumblocksize(String maximumblocksize) {
    257600                this.maximumblocksize = maximumblocksize;
    258601        }
    259602
    260         public String getHardwareEndofMedium() {
    261                 return hardwareEndofMedium;
    262         }
    263 
    264         public void setHardwareEndofMedium(String hardwareEndofMedium) {
    265                 this.hardwareEndofMedium = hardwareEndofMedium;
    266         }
    267 
    268         public String getFastForwardSpaceFile() {
    269                 return fastForwardSpaceFile;
    270         }
    271 
    272         public void setFastForwardSpaceFile(String fastForwardSpaceFile) {
    273                 this.fastForwardSpaceFile = fastForwardSpaceFile;
    274         }
    275 
    276         public String getUseMTIOCGET() {
    277                 return useMTIOCGET;
    278         }
    279 
    280         public void setUseMTIOCGET(String useMTIOCGET) {
    281                 this.useMTIOCGET = useMTIOCGET;
    282         }
    283 
    284         public String getBsfAtEOM() {
    285                 return bsfAtEOM;
    286         }
    287 
    288         public void setBsfAtEOM(String bsfAtEOM) {
    289                 this.bsfAtEOM = bsfAtEOM;
    290         }
    291 
    292         public String getTwoEOF() {
    293                 return twoEOF;
    294         }
    295 
    296         public void setTwoEOF(String twoEOF) {
    297                 this.twoEOF = twoEOF;
    298         }
    299 
    300         public String getBackwardSpaceRecord() {
    301                 return backwardSpaceRecord;
    302         }
    303 
    304         public void setBackwardSpaceRecord(String backwardSpaceRecord) {
    305                 this.backwardSpaceRecord = backwardSpaceRecord;
    306         }
    307 
    308         public String getBackwardSpaceFile() {
    309                 return backwardSpaceFile;
    310         }
    311 
    312         public void setBackwardSpaceFile(String backwardSpaceFile) {
    313                 this.backwardSpaceFile = backwardSpaceFile;
    314         }
    315 
    316         public String getForwardSpaceRecord() {
    317                 return forwardSpaceRecord;
    318         }
    319 
    320         public void setForwardSpaceRecord(String forwardSpaceRecord) {
    321                 this.forwardSpaceRecord = forwardSpaceRecord;
    322         }
    323 
    324         public String getForwardSpaceFile() {
    325                 return forwardSpaceFile;
    326         }
    327 
    328         public void setForwardSpaceFile(String forwardSpaceFile) {
    329                 this.forwardSpaceFile = forwardSpaceFile;
    330         }
    331 
    332         public String getOfflineOnUnmount() {
    333                 return offlineOnUnmount;
    334         }
    335 
    336         public void setOfflineOnUnmount(String offlineOnUnmount) {
    337                 this.offlineOnUnmount = offlineOnUnmount;
    338         }
    339 
    340         public String getMaximumConcurrentJobs() {
    341                 return maximumConcurrentJobs;
    342         }
    343 
    344         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    345                 this.maximumConcurrentJobs = maximumConcurrentJobs;
    346         }
    347 
    348         public String getMaximumVolumeSize() {
    349                 return maximumVolumeSize;
    350         }
    351 
    352         public void setMaximumVolumeSize(String maximumVolumeSize) {
    353                 this.maximumVolumeSize = maximumVolumeSize;
    354         }
    355 
    356         public String getMaximumFileSize() {
    357                 return maximumFileSize;
    358         }
    359 
    360         public void setMaximumFileSize(String maximumFileSize) {
    361                 this.maximumFileSize = maximumFileSize;
    362         }
    363 
    364         public String getBlockPositioning() {
    365                 return blockPositioning;
    366         }
    367 
    368         public void setBlockPositioning(String blockPositioning) {
    369                 this.blockPositioning = blockPositioning;
    370         }
    371 
    372         public String getMaximumNetworkBufferSize() {
    373                 return maximumNetworkBufferSize;
    374         }
    375 
    376         public void setMaximumNetworkBufferSize(String maximumNetworkBufferSize) {
    377                 this.maximumNetworkBufferSize = maximumNetworkBufferSize;
    378         }
    379 
    380         public String getMaximumSpoolSize() {
    381                 return maximumSpoolSize;
    382         }
    383 
    384         public void setMaximumSpoolSize(String maximumSpoolSize) {
    385                 this.maximumSpoolSize = maximumSpoolSize;
    386         }
    387 
    388         public String getMaximumJobSpoolSize() {
    389                 return maximumJobSpoolSize;
    390         }
    391 
    392         public void setMaximumJobSpoolSize(String maximumJobSpoolSize) {
    393                 this.maximumJobSpoolSize = maximumJobSpoolSize;
    394         }
    395 
    396         public String getSpoolDirectory() {
    397                 return spoolDirectory;
    398         }
    399 
    400         public void setSpoolDirectory(String spoolDirectory) {
    401                 this.spoolDirectory = spoolDirectory;
    402         }
    403 
    404         public String getMaximumPartSize() {
    405                 return maximumPartSize;
    406         }
    407 
    408         public void setMaximumPartSize(String maximumPartSize) {
    409                 this.maximumPartSize = maximumPartSize;
    410         }
     603        /**
     604         * @return
     605         * @uml.property  name="hardwareendofmedium"
     606         */
     607        public String getHardwareendofmedium() {
     608                return hardwareendofmedium;
     609        }
     610
     611        /**
     612         * @param hardwareendofmedium
     613         * @uml.property  name="hardwareendofmedium"
     614         */
     615        public void setHardwareendofmedium(String hardwareendofmedium) {
     616                this.hardwareendofmedium = hardwareendofmedium;
     617        }
     618
     619        /**
     620         * @return
     621         * @uml.property  name="fastforwardspacefile"
     622         */
     623        public String getFastforwardspacefile() {
     624                return fastforwardspacefile;
     625        }
     626
     627        /**
     628         * @param fastforwardspacefile
     629         * @uml.property  name="fastforwardspacefile"
     630         */
     631        public void setFastforwardspacefile(String fastforwardspacefile) {
     632                this.fastforwardspacefile = fastforwardspacefile;
     633        }
     634
     635        /**
     636         * @return
     637         * @uml.property  name="usemtiocget"
     638         */
     639        public String getUsemtiocget() {
     640                return usemtiocget;
     641        }
     642
     643        /**
     644         * @param usemtiocget
     645         * @uml.property  name="usemtiocget"
     646         */
     647        public void setUsemtiocget(String usemtiocget) {
     648                this.usemtiocget = usemtiocget;
     649        }
     650
     651        /**
     652         * @return
     653         * @uml.property  name="bsfateom"
     654         */
     655        public String getBsfateom() {
     656                return bsfateom;
     657        }
     658
     659        /**
     660         * @param bsfateom
     661         * @uml.property  name="bsfateom"
     662         */
     663        public void setBsfateom(String bsfateom) {
     664                this.bsfateom = bsfateom;
     665        }
     666
     667        /**
     668         * @return
     669         * @uml.property  name="twoeof"
     670         */
     671        public String getTwoeof() {
     672                return twoeof;
     673        }
     674
     675        /**
     676         * @param twoeof
     677         * @uml.property  name="twoeof"
     678         */
     679        public void setTwoeof(String twoeof) {
     680                this.twoeof = twoeof;
     681        }
     682
     683        /**
     684         * @return
     685         * @uml.property  name="backwardspacerecord"
     686         */
     687        public String getBackwardspacerecord() {
     688                return backwardspacerecord;
     689        }
     690
     691        /**
     692         * @param backwardspacerecord
     693         * @uml.property  name="backwardspacerecord"
     694         */
     695        public void setBackwardspacerecord(String backwardspacerecord) {
     696                this.backwardspacerecord = backwardspacerecord;
     697        }
     698
     699        /**
     700         * @return
     701         * @uml.property  name="backwardspacefile"
     702         */
     703        public String getBackwardspacefile() {
     704                return backwardspacefile;
     705        }
     706
     707        /**
     708         * @param backwardspacefile
     709         * @uml.property  name="backwardspacefile"
     710         */
     711        public void setBackwardspacefile(String backwardspacefile) {
     712                this.backwardspacefile = backwardspacefile;
     713        }
     714
     715        /**
     716         * @return
     717         * @uml.property  name="forwardspacerecord"
     718         */
     719        public String getForwardspacerecord() {
     720                return forwardspacerecord;
     721        }
     722
     723        /**
     724         * @param forwardspacerecord
     725         * @uml.property  name="forwardspacerecord"
     726         */
     727        public void setForwardspacerecord(String forwardspacerecord) {
     728                this.forwardspacerecord = forwardspacerecord;
     729        }
     730
     731        /**
     732         * @return
     733         * @uml.property  name="forwardspacefile"
     734         */
     735        public String getForwardspacefile() {
     736                return forwardspacefile;
     737        }
     738
     739        /**
     740         * @param forwardspacefile
     741         * @uml.property  name="forwardspacefile"
     742         */
     743        public void setForwardspacefile(String forwardspacefile) {
     744                this.forwardspacefile = forwardspacefile;
     745        }
     746
     747        /**
     748         * @return
     749         * @uml.property  name="offlineonunmount"
     750         */
     751        public String getOfflineonunmount() {
     752                return offlineonunmount;
     753        }
     754
     755        /**
     756         * @param offlineonunmount
     757         * @uml.property  name="offlineonunmount"
     758         */
     759        public void setOfflineonunmount(String offlineonunmount) {
     760                this.offlineonunmount = offlineonunmount;
     761        }
     762
     763        /**
     764         * @return
     765         * @uml.property  name="maximumconcurrentjobs"
     766         */
     767        public String getMaximumconcurrentjobs() {
     768                return maximumconcurrentjobs;
     769        }
     770
     771        /**
     772         * @param maximumconcurrentjobs
     773         * @uml.property  name="maximumconcurrentjobs"
     774         */
     775        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
     776                this.maximumconcurrentjobs = maximumconcurrentjobs;
     777        }
     778
     779        /**
     780         * @return
     781         * @uml.property  name="maximumvolumesize"
     782         */
     783        public String getMaximumvolumesize() {
     784                return maximumvolumesize;
     785        }
     786
     787        /**
     788         * @param maximumvolumesize
     789         * @uml.property  name="maximumvolumesize"
     790         */
     791        public void setMaximumvolumesize(String maximumvolumesize) {
     792                this.maximumvolumesize = maximumvolumesize;
     793        }
     794
     795        /**
     796         * @return
     797         * @uml.property  name="maximumfilesize"
     798         */
     799        public String getMaximumfilesize() {
     800                return maximumfilesize;
     801        }
     802
     803        /**
     804         * @param maximumfilesize
     805         * @uml.property  name="maximumfilesize"
     806         */
     807        public void setMaximumfilesize(String maximumfilesize) {
     808                this.maximumfilesize = maximumfilesize;
     809        }
     810
     811        /**
     812         * @return
     813         * @uml.property  name="blockpositioning"
     814         */
     815        public String getBlockpositioning() {
     816                return blockpositioning;
     817        }
     818
     819        /**
     820         * @param blockpositioning
     821         * @uml.property  name="blockpositioning"
     822         */
     823        public void setBlockpositioning(String blockpositioning) {
     824                this.blockpositioning = blockpositioning;
     825        }
     826
     827        /**
     828         * @return
     829         * @uml.property  name="maximumnetworkbuffersize"
     830         */
     831        public String getMaximumnetworkbuffersize() {
     832                return maximumnetworkbuffersize;
     833        }
     834
     835        /**
     836         * @param maximumnetworkbuffersize
     837         * @uml.property  name="maximumnetworkbuffersize"
     838         */
     839        public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) {
     840                this.maximumnetworkbuffersize = maximumnetworkbuffersize;
     841        }
     842
     843        /**
     844         * @return
     845         * @uml.property  name="maximumspoolsize"
     846         */
     847        public String getMaximumspoolsize() {
     848                return maximumspoolsize;
     849        }
     850
     851        /**
     852         * @param maximumspoolsize
     853         * @uml.property  name="maximumspoolsize"
     854         */
     855        public void setMaximumspoolsize(String maximumspoolsize) {
     856                this.maximumspoolsize = maximumspoolsize;
     857        }
     858
     859        /**
     860         * @return
     861         * @uml.property  name="maximumjobspoolsize"
     862         */
     863        public String getMaximumjobspoolsize() {
     864                return maximumjobspoolsize;
     865        }
     866
     867        /**
     868         * @param maximumjobspoolsize
     869         * @uml.property  name="maximumjobspoolsize"
     870         */
     871        public void setMaximumjobspoolsize(String maximumjobspoolsize) {
     872                this.maximumjobspoolsize = maximumjobspoolsize;
     873        }
     874
     875        /**
     876         * @return
     877         * @uml.property  name="spooldirectory"
     878         */
     879        public String getSpooldirectory() {
     880                return spooldirectory;
     881        }
     882
     883        /**
     884         * @param spooldirectory
     885         * @uml.property  name="spooldirectory"
     886         */
     887        public void setSpooldirectory(String spooldirectory) {
     888                this.spooldirectory = spooldirectory;
     889        }
     890
     891        /**
     892         * @return
     893         * @uml.property  name="maximumpartsize"
     894         */
     895        public String getMaximumpartsize() {
     896                return maximumpartsize;
     897        }
     898
     899        /**
     900         * @param maximumpartsize
     901         * @uml.property  name="maximumpartsize"
     902         */
     903        public void setMaximumpartsize(String maximumpartsize) {
     904                this.maximumpartsize = maximumpartsize;
     905        }
     906
    411907       
    412908       
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDStorageItem.java

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class SDStorageItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
    4         private String workingDirectory;
    5         private String pidDirectory;
    6         private String heartbeatInterval;
    7         private String clientConnectWait;
    8         private String maximumConcurrentJobs;
    9         private String sdAddresses;
    10         private String sdPort;
    11         private String sdAddress;
     7        /**
     8         * @uml.property  name="workingdirectory"
     9         */
     10        private String workingdirectory;
     11        /**
     12         * @uml.property  name="piddirectory"
     13         */
     14        private String piddirectory;
     15        /**
     16         * @uml.property  name="heartbeatinterval"
     17         */
     18        private String heartbeatinterval;
     19        /**
     20         * @uml.property  name="clientconnectwait"
     21         */
     22        private String clientconnectwait;
     23        /**
     24         * @uml.property  name="maximumconcurrentjobs"
     25         */
     26        private String maximumconcurrentjobs;
     27        /**
     28         * @uml.property  name="sdaddresses"
     29         */
     30        private String sdaddresses;
     31        /**
     32         * @uml.property  name="sdport"
     33         */
     34        private String sdport;
     35        /**
     36         * @uml.property  name="sdaddress"
     37         */
     38        private String sdaddress;
    1239
    1340        public SDStorageItem() {}
    1441        public SDStorageItem(String name, String workingDirectory, String pidDirectory) {
    1542                setName(name);
    16                 setWorkingDirectory(workingDirectory);
    17                 setPidDirectory(pidDirectory);
     43                setWorkingdirectory(workingdirectory);
     44                setPiddirectory(piddirectory);
    1845        }
     46        /**
     47         * @return
     48         * @uml.property  name="name"
     49         */
    1950        public String getName() {
    2051                return name;
    2152        }
     53        /**
     54         * @param name
     55         * @uml.property  name="name"
     56         */
    2257        public void setName(String name) {
    2358                this.name = name;
    2459        }
    25         public String getWorkingDirectory() {
    26                 return workingDirectory;
     60        /**
     61         * @return
     62         * @uml.property  name="workingdirectory"
     63         */
     64        public String getWorkingdirectory() {
     65                return workingdirectory;
    2766        }
    28         public void setWorkingDirectory(String workingDirectory) {
    29                 this.workingDirectory = workingDirectory;
     67        /**
     68         * @param workingdirectory
     69         * @uml.property  name="workingdirectory"
     70         */
     71        public void setWorkingdirectory(String workingdirectory) {
     72                this.workingdirectory = workingdirectory;
    3073        }
    31         public String getPidDirectory() {
    32                 return pidDirectory;
     74        /**
     75         * @return
     76         * @uml.property  name="piddirectory"
     77         */
     78        public String getPiddirectory() {
     79                return piddirectory;
    3380        }
    34         public void setPidDirectory(String pidDirectory) {
    35                 this.pidDirectory = pidDirectory;
     81        /**
     82         * @param piddirectory
     83         * @uml.property  name="piddirectory"
     84         */
     85        public void setPiddirectory(String piddirectory) {
     86                this.piddirectory = piddirectory;
    3687        }
    37         public String getHeartbeatInterval() {
    38                 return heartbeatInterval;
     88        /**
     89         * @return
     90         * @uml.property  name="heartbeatinterval"
     91         */
     92        public String getHeartbeatinterval() {
     93                return heartbeatinterval;
    3994        }
    40         public void setHeartbeatInterval(String heartbeatInterval) {
    41                 this.heartbeatInterval = heartbeatInterval;
     95        /**
     96         * @param heartbeatinterval
     97         * @uml.property  name="heartbeatinterval"
     98         */
     99        public void setHeartbeatinterval(String heartbeatinterval) {
     100                this.heartbeatinterval = heartbeatinterval;
    42101        }
    43         public String getClientConnectWait() {
    44                 return clientConnectWait;
     102        /**
     103         * @return
     104         * @uml.property  name="clientconnectwait"
     105         */
     106        public String getClientconnectwait() {
     107                return clientconnectwait;
    45108        }
    46         public void setClientConnectWait(String clientConnectWait) {
    47                 this.clientConnectWait = clientConnectWait;
     109        /**
     110         * @param clientconnectwait
     111         * @uml.property  name="clientconnectwait"
     112         */
     113        public void setClientconnectwait(String clientconnectwait) {
     114                this.clientconnectwait = clientconnectwait;
    48115        }
    49         public String getMaximumConcurrentJobs() {
    50                 return maximumConcurrentJobs;
     116        /**
     117         * @return
     118         * @uml.property  name="maximumconcurrentjobs"
     119         */
     120        public String getMaximumconcurrentjobs() {
     121                return maximumconcurrentjobs;
    51122        }
    52         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    53                 this.maximumConcurrentJobs = maximumConcurrentJobs;
     123        /**
     124         * @param maximumconcurrentjobs
     125         * @uml.property  name="maximumconcurrentjobs"
     126         */
     127        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
     128                this.maximumconcurrentjobs = maximumconcurrentjobs;
    54129        }
    55         public String getSdAddresses() {
    56                 return sdAddresses;
     130        /**
     131         * @return
     132         * @uml.property  name="sdaddresses"
     133         */
     134        public String getSdaddresses() {
     135                return sdaddresses;
    57136        }
    58         public void setSdAddresses(String sdAddresses) {
    59                 this.sdAddresses = sdAddresses;
     137        /**
     138         * @param sdaddresses
     139         * @uml.property  name="sdaddresses"
     140         */
     141        public void setSdaddresses(String sdaddresses) {
     142                this.sdaddresses = sdaddresses;
    60143        }
    61         public String getSdPort() {
    62                 return sdPort;
     144        /**
     145         * @return
     146         * @uml.property  name="sdport"
     147         */
     148        public String getSdport() {
     149                return sdport;
    63150        }
    64         public void setSdPort(String sdPort) {
    65                 this.sdPort = sdPort;
     151        /**
     152         * @param sdport
     153         * @uml.property  name="sdport"
     154         */
     155        public void setSdport(String sdport) {
     156                this.sdport = sdport;
    66157        }
    67         public String getSdAddress() {
    68                 return sdAddress;
     158        /**
     159         * @return
     160         * @uml.property  name="sdaddress"
     161         */
     162        public String getSdaddress() {
     163                return sdaddress;
    69164        }
    70         public void setSdAddress(String sdAddress) {
    71                 this.sdAddress = sdAddress;
     165        /**
     166         * @param sdaddress
     167         * @uml.property  name="sdaddress"
     168         */
     169        public void setSdaddress(String sdaddress) {
     170                this.sdaddress = sdaddress;
    72171        }
     172
    73173       
    74174}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ScheduleItem.java

    r844 r858  
    22public class ScheduleItem extends ItemType implements UserObjectItem{
    33
     4        /**
     5         * @uml.property  name="name"
     6         */
    47        private String name;
     8        /**
     9         * @uml.property  name="run"
     10         */
    511        private String run;
    612       
     
    1117                setRun(run);
    1218        }
     19        /**
     20         * @return
     21         * @uml.property  name="name"
     22         */
    1323        public String getName() {
    1424                return name;
    1525        }
    1626
     27        /**
     28         * @param name
     29         * @uml.property  name="name"
     30         */
    1731        public void setName(String name) {
    1832                this.name = name;
    1933        }
    2034
     35        /**
     36         * @return
     37         * @uml.property  name="run"
     38         */
    2139        public String getRun() {
    2240                return run;
    2341        }
    2442
     43        /**
     44         * @param run
     45         * @uml.property  name="run"
     46         */
    2547        public void setRun(String run) {
    2648                this.run = run;
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/StorageItem.java

    r844 r858  
    22public class StorageItem extends ItemType implements UserObjectItem{
    33
     4        /**
     5         * @uml.property  name="name"
     6         */
    47        private String name;
     8        /**
     9         * @uml.property  name="address"
     10         */
    511        private String address;
    6         private String sdPort;
     12        /**
     13         * @uml.property  name="sdport"
     14         */
     15        private String sdport;
     16        /**
     17         * @uml.property  name="password"
     18         */
    719        private String password;
     20        /**
     21         * @uml.property  name="device"
     22         */
    823        private String device;
    9         private String mediaType;
     24        /**
     25         * @uml.property  name="mediatype"
     26         */
     27        private String mediatype;
     28        /**
     29         * @uml.property  name="autochanger"
     30         */
    1031        private String autochanger;
    11         private String maximumConcurrentJobs;
    12         private String allowCompression;
    13         private String heartbeatInterval;
     32        /**
     33         * @uml.property  name="maximumconcurrentjobs"
     34         */
     35        private String maximumconcurrentjobs;
     36        /**
     37         * @uml.property  name="allowcompression"
     38         */
     39        private String allowcompression;
     40        /**
     41         * @uml.property  name="heartbeatinterval"
     42         */
     43        private String heartbeatinterval;
    1444       
    1545        public StorageItem() {}
    16        
     46
     47        /**
     48         * @return
     49         * @uml.property  name="name"
     50         */
    1751        public String getName() {
    1852                return name;
    1953        }
    2054
     55        /**
     56         * @param name
     57         * @uml.property  name="name"
     58         */
    2159        public void setName(String name) {
    2260                this.name = name;
    2361        }
    2462
     63        /**
     64         * @return
     65         * @uml.property  name="address"
     66         */
    2567        public String getAddress() {
    2668                return address;
    2769        }
    2870
     71        /**
     72         * @param address
     73         * @uml.property  name="address"
     74         */
    2975        public void setAddress(String address) {
    3076                this.address = address;
    3177        }
    3278
    33         public String getSdPort() {
    34                 return sdPort;
    35         }
    36 
    37         public void setSdPort(String sdPort) {
    38                 this.sdPort = sdPort;
    39         }
    40 
     79        /**
     80         * @return
     81         * @uml.property  name="sdport"
     82         */
     83        public String getSdport() {
     84                return sdport;
     85        }
     86
     87        /**
     88         * @param sdport
     89         * @uml.property  name="sdport"
     90         */
     91        public void setSdport(String sdport) {
     92                this.sdport = sdport;
     93        }
     94
     95        /**
     96         * @return
     97         * @uml.property  name="password"
     98         */
    4199        public String getPassword() {
    42100                return password;
    43101        }
    44102
     103        /**
     104         * @param password
     105         * @uml.property  name="password"
     106         */
    45107        public void setPassword(String password) {
    46108                this.password = password;
    47109        }
    48110
     111        /**
     112         * @return
     113         * @uml.property  name="device"
     114         */
    49115        public String getDevice() {
    50116                return device;
    51117        }
    52118
     119        /**
     120         * @param device
     121         * @uml.property  name="device"
     122         */
    53123        public void setDevice(String device) {
    54124                this.device = device;
    55125        }
    56126
    57         public String getMediaType() {
    58                 return mediaType;
    59         }
    60 
    61         public void setMediaType(String mediaType) {
    62                 this.mediaType = mediaType;
    63         }
    64 
     127        /**
     128         * @return
     129         * @uml.property  name="mediatype"
     130         */
     131        public String getMediatype() {
     132                return mediatype;
     133        }
     134
     135        /**
     136         * @param mediatype
     137         * @uml.property  name="mediatype"
     138         */
     139        public void setMediatype(String mediatype) {
     140                this.mediatype = mediatype;
     141        }
     142
     143        /**
     144         * @return
     145         * @uml.property  name="autochanger"
     146         */
    65147        public String getAutochanger() {
    66148                return autochanger;
    67149        }
    68150
     151        /**
     152         * @param autochanger
     153         * @uml.property  name="autochanger"
     154         */
    69155        public void setAutochanger(String autochanger) {
    70156                this.autochanger = autochanger;
    71157        }
    72158
    73         public String getMaximumConcurrentJobs() {
    74                 return maximumConcurrentJobs;
    75         }
    76 
    77         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    78                 this.maximumConcurrentJobs = maximumConcurrentJobs;
    79         }
    80 
    81         public String getAllowCompression() {
    82                 return allowCompression;
    83         }
    84 
    85         public void setAllowCompression(String allowCompression) {
    86                 this.allowCompression = allowCompression;
    87         }
    88 
    89         public String getHeartbeatInterval() {
    90                 return heartbeatInterval;
    91         }
    92 
    93         public void setHeartbeatInterval(String heartbeatInterval) {
    94                 this.heartbeatInterval = heartbeatInterval;
    95         }
     159        /**
     160         * @return
     161         * @uml.property  name="maximumconcurrentjobs"
     162         */
     163        public String getMaximumconcurrentjobs() {
     164                return maximumconcurrentjobs;
     165        }
     166
     167        /**
     168         * @param maximumconcurrentjobs
     169         * @uml.property  name="maximumconcurrentjobs"
     170         */
     171        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
     172                this.maximumconcurrentjobs = maximumconcurrentjobs;
     173        }
     174
     175        /**
     176         * @return
     177         * @uml.property  name="allowcompression"
     178         */
     179        public String getAllowcompression() {
     180                return allowcompression;
     181        }
     182
     183        /**
     184         * @param allowcompression
     185         * @uml.property  name="allowcompression"
     186         */
     187        public void setAllowcompression(String allowcompression) {
     188                this.allowcompression = allowcompression;
     189        }
     190
     191        /**
     192         * @return
     193         * @uml.property  name="heartbeatinterval"
     194         */
     195        public String getHeartbeatinterval() {
     196                return heartbeatinterval;
     197        }
     198
     199        /**
     200         * @param heartbeatinterval
     201         * @uml.property  name="heartbeatinterval"
     202         */
     203        public void setHeartbeatinterval(String heartbeatinterval) {
     204                this.heartbeatinterval = heartbeatinterval;
     205        }
     206       
     207
    96208
    97209}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/UserObjectItem.java

    r844 r858  
    33 * Interface to be implemented by *Item classes for different resource type
    44 */
     5/**
     6 * @author  tgoecke
     7 */
    58public interface UserObjectItem {
    69
     10        /**
     11         * @uml.property  name="resType"
     12         */
    713        public String getResType();
     14        /**
     15         * @param ResType
     16         * @uml.property  name="resType"
     17         */
    818        public void setResType(String ResType);
    919}
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/UserObjectItemType.java

    r854 r858  
    55
    66public class UserObjectItemType extends IceUserObject {
     7
    78        private UserObjectItem userObject;
     9        private boolean selected;
     10       
    811        public UserObjectItemType(DefaultMutableTreeNode defaultMutableTreeNode){
    912                super(defaultMutableTreeNode);
     
    1316                setLeaf(true);
    1417                setExpanded(false);
    15                
     18                setSelected(false);
    1619        }
     20
    1721        public UserObjectItem getUserObject(){
    1822                return userObject;
    1923        }
    20         public void setUserObjectItem(UserObjectItem userObject){
     24        public void setUserObject(UserObjectItem userObject){
    2125                this.userObject = userObject;
     26        }
     27        public boolean getSelected(){
     28                return selected;
     29        }
     30        public void setSelected(boolean selected){
     31                this.selected = selected;
     32        }
     33        public void switchSelected(){
     34                setSelected(!selected);
    2235        }
    2336
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/messages_en.properties

    r857 r858  
    1 storagedaemon.storagedaemon.name.ref =    0
    2 storagedaemon.storagedaemon.name.type = String
    3 storagedaemon.storagedaemon.name.required = false
    4 storagedaemon.storagedaemon.name.def =  0
    5 storagedaemon.storagedaemon.description.ref =      0
    6 storagedaemon.storagedaemon.description.type = String
    7 storagedaemon.storagedaemon.description.required = false
    8 storagedaemon.storagedaemon.description.def =  0
    9 storagedaemon.storagedaemon.sdaddress.ref =      0
    10 storagedaemon.storagedaemon.sdaddress.type = store_addresses_address
    11 storagedaemon.storagedaemon.sdaddress.required = false
    12 storagedaemon.storagedaemon.sdaddress.def =  9103
    13 storagedaemon.storagedaemon.sdaddresses.ref =  0
    14 storagedaemon.storagedaemon.sdaddresses.type = store_addresses
    15 storagedaemon.storagedaemon.sdaddresses.required = false
    16 storagedaemon.storagedaemon.sdaddresses.def =  9103
    17 storagedaemon.storagedaemon.messages.ref =    R_MSGS
    18 storagedaemon.storagedaemon.messages.type = Resource
    19 storagedaemon.storagedaemon.messages.required = false
    20 storagedaemon.storagedaemon.messages.def =  0
    21 storagedaemon.storagedaemon.sdport.ref =      0
    22 storagedaemon.storagedaemon.sdport.type = store_addresses_port
    23 storagedaemon.storagedaemon.sdport.required = false
    24 storagedaemon.storagedaemon.sdport.def =  9103
    25 storagedaemon.storagedaemon.workingdirectory.ref =  0
    26 storagedaemon.storagedaemon.workingdirectory.type = path
    27 storagedaemon.storagedaemon.workingdirectory.required = false
    28 storagedaemon.storagedaemon.workingdirectory.def =  0
    29 storagedaemon.storagedaemon.piddirectory.ref =  0
    30 storagedaemon.storagedaemon.piddirectory.type = path
    31 storagedaemon.storagedaemon.piddirectory.required = false
    32 storagedaemon.storagedaemon.piddirectory.def =  0
    33 storagedaemon.storagedaemon.subsysdirectory.ref =  0
    34 storagedaemon.storagedaemon.subsysdirectory.type = path
    35 storagedaemon.storagedaemon.subsysdirectory.required = false
    36 storagedaemon.storagedaemon.subsysdirectory.def =  0
    37 storagedaemon.storagedaemon.plugindirectory.ref =  0
    38 storagedaemon.storagedaemon.plugindirectory.type = path
    39 storagedaemon.storagedaemon.plugindirectory.required = false
    40 storagedaemon.storagedaemon.plugindirectory.def =  0
    41 storagedaemon.storagedaemon.scriptsdirectory.ref =  0
    42 storagedaemon.storagedaemon.scriptsdirectory.type = path
    43 storagedaemon.storagedaemon.scriptsdirectory.required = false
    44 storagedaemon.storagedaemon.scriptsdirectory.def =  0
    45 storagedaemon.storagedaemon.maximumconcurrentjobs.ref =  0
    46 storagedaemon.storagedaemon.maximumconcurrentjobs.type = int
    47 storagedaemon.storagedaemon.maximumconcurrentjobs.required = false
    48 storagedaemon.storagedaemon.maximumconcurrentjobs.def =  20
    49 storagedaemon.storagedaemon.heartbeatinterval.ref =  0
    50 storagedaemon.storagedaemon.heartbeatinterval.type = Date
    51 storagedaemon.storagedaemon.heartbeatinterval.required = false
    52 storagedaemon.storagedaemon.heartbeatinterval.def =  0
    53 storagedaemon.storagedaemon.tlsauthenticate.ref =  0
    54 storagedaemon.storagedaemon.tlsauthenticate.type = store_bool
    55 storagedaemon.storagedaemon.tlsauthenticate.required = false
    56 storagedaemon.storagedaemon.tlsauthenticate.def =  0
    57 storagedaemon.storagedaemon.tlsenable.ref =  0
    58 storagedaemon.storagedaemon.tlsenable.type = store_bool
    59 storagedaemon.storagedaemon.tlsenable.required = false
    60 storagedaemon.storagedaemon.tlsenable.def =  0
    61 storagedaemon.storagedaemon.tlsrequire.ref =  0
    62 storagedaemon.storagedaemon.tlsrequire.type = store_bool
    63 storagedaemon.storagedaemon.tlsrequire.required = false
    64 storagedaemon.storagedaemon.tlsrequire.def =  0
    65 storagedaemon.storagedaemon.tlsverifypeer.ref =  1
    66 storagedaemon.storagedaemon.tlsverifypeer.type = store_bool
    67 storagedaemon.storagedaemon.tlsverifypeer.required = false
    68 storagedaemon.storagedaemon.tlsverifypeer.def =  1
    69 storagedaemon.storagedaemon.tlscacertificatefile.ref =  0
    70 storagedaemon.storagedaemon.tlscacertificatefile.type = path
    71 storagedaemon.storagedaemon.tlscacertificatefile.required = false
    72 storagedaemon.storagedaemon.tlscacertificatefile.def =  0
    73 storagedaemon.storagedaemon.tlscacertificatedir.ref =  0
    74 storagedaemon.storagedaemon.tlscacertificatedir.type = path
    75 storagedaemon.storagedaemon.tlscacertificatedir.required = false
    76 storagedaemon.storagedaemon.tlscacertificatedir.def =  0
    77 storagedaemon.storagedaemon.tlscertificate.ref =  0
    78 storagedaemon.storagedaemon.tlscertificate.type = path
    79 storagedaemon.storagedaemon.tlscertificate.required = false
    80 storagedaemon.storagedaemon.tlscertificate.def =  0
    81 storagedaemon.storagedaemon.tlskey.ref =  0
    82 storagedaemon.storagedaemon.tlskey.type = path
    83 storagedaemon.storagedaemon.tlskey.required = false
    84 storagedaemon.storagedaemon.tlskey.def =  0
    85 storagedaemon.storagedaemon.tlsdhfile.ref =  0
    86 storagedaemon.storagedaemon.tlsdhfile.type = path
    87 storagedaemon.storagedaemon.tlsdhfile.required = false
    88 storagedaemon.storagedaemon.tlsdhfile.def =  0
    89 storagedaemon.storagedaemon.tlsallowedcn.ref =  0
    90 storagedaemon.storagedaemon.tlsallowedcn.type = store_alist_str
    91 storagedaemon.storagedaemon.tlsallowedcn.required = false
    92 storagedaemon.storagedaemon.tlsallowedcn.def =  0
    93 storagedaemon.storagedaemon.clientconnectwait.ref =  0
    94 storagedaemon.storagedaemon.clientconnectwait.type = Date
    95 storagedaemon.storagedaemon.clientconnectwait.required = false
    96 storagedaemon.storagedaemon.clientconnectwait.def =  30 * 60
    97 storagedaemon.storagedaemon.verid.ref =  0
    98 storagedaemon.storagedaemon.verid.type = String
    99 storagedaemon.storagedaemon.verid.required = false
    100 storagedaemon.storagedaemon.verid.def =  0
     1director.director.name.ref =  0
     2director.director.name.type = String
     3director.director.name.required = true
     4director.director.name.def =  0
     5director.director.description.ref =  0
     6director.director.description.type = String
     7director.director.description.required = false
     8director.director.description.def =  0
     9director.director.messages.ref =  R_MSGS
     10director.director.messages.type = Resource
     11director.director.messages.required = false
     12director.director.messages.def =  0
     13director.director.dirport.ref =   0
     14director.director.dirport.type = store_addresses_port
     15director.director.dirport.required = false
     16director.director.dirport.def =  9101
     17director.director.diraddress.ref =   0
     18director.director.diraddress.type = store_addresses_address
     19director.director.diraddress.required = false
     20director.director.diraddress.def =  9101
     21director.director.diraddresses.ref =   0
     22director.director.diraddresses.type = store_addresses
     23director.director.diraddresses.required = false
     24director.director.diraddresses.def =  9101
     25director.director.dirsourceaddress.ref =   0
     26director.director.dirsourceaddress.type = store_addresses_address
     27director.director.dirsourceaddress.required = false
     28director.director.dirsourceaddress.def =  0
     29director.director.queryfile.ref =  0
     30director.director.queryfile.type = path
     31director.director.queryfile.required = true
     32director.director.queryfile.def =  0
     33director.director.workingdirectory.ref =  0
     34director.director.workingdirectory.type = path
     35director.director.workingdirectory.required = true
     36director.director.workingdirectory.def =  0
     37director.director.plugindirectory.ref =   0
     38director.director.plugindirectory.type = path
     39director.director.plugindirectory.required = false
     40director.director.plugindirectory.def =  0
     41director.director.scriptsdirectory.ref =  0
     42director.director.scriptsdirectory.type = path
     43director.director.scriptsdirectory.required = false
     44director.director.scriptsdirectory.def =  0
     45director.director.piddirectory.ref =      0
     46director.director.piddirectory.type = path
     47director.director.piddirectory.required = true
     48director.director.piddirectory.def =  0
     49director.director.subsysdirectory.ref =   0
     50director.director.subsysdirectory.type = path
     51director.director.subsysdirectory.required = false
     52director.director.subsysdirectory.def =  0
     53director.director.maximumconcurrentjobs.ref =  0
     54director.director.maximumconcurrentjobs.type = int
     55director.director.maximumconcurrentjobs.required = false
     56director.director.maximumconcurrentjobs.def =  1
     57director.director.maximumconsoleconnections.ref =  0
     58director.director.maximumconsoleconnections.type = int
     59director.director.maximumconsoleconnections.required = false
     60director.director.maximumconsoleconnections.def =  20
     61director.director.password.ref =  0
     62director.director.password.type = Password
     63director.director.password.required = true
     64director.director.password.def =  0
     65director.director.fdconnecttimeout.ref =  0
     66director.director.fdconnecttimeout.type = Date
     67director.director.fdconnecttimeout.required = false
     68director.director.fdconnecttimeout.def =  3 * 60
     69director.director.sdconnecttimeout.ref =  0
     70director.director.sdconnecttimeout.type = Date
     71director.director.sdconnecttimeout.required = false
     72director.director.sdconnecttimeout.def =  30 * 60
     73director.director.heartbeatinterval.ref =  0
     74director.director.heartbeatinterval.type = Date
     75director.director.heartbeatinterval.required = false
     76director.director.heartbeatinterval.def =  0
     77director.director.tlsauthenticate.ref =  0
     78director.director.tlsauthenticate.type = store_bool
     79director.director.tlsauthenticate.required = false
     80director.director.tlsauthenticate.def =  0
     81director.director.tlsenable.ref =  0
     82director.director.tlsenable.type = store_bool
     83director.director.tlsenable.required = false
     84director.director.tlsenable.def =  0
     85director.director.tlsrequire.ref =  0
     86director.director.tlsrequire.type = store_bool
     87director.director.tlsrequire.required = false
     88director.director.tlsrequire.def =  0
     89director.director.tlsverifypeer.ref =  0
     90director.director.tlsverifypeer.type = store_bool
     91director.director.tlsverifypeer.required = false
     92director.director.tlsverifypeer.def =  true
     93director.director.tlscacertificatefile.ref =  0
     94director.director.tlscacertificatefile.type = path
     95director.director.tlscacertificatefile.required = false
     96director.director.tlscacertificatefile.def =  0
     97director.director.tlscacertificatedir.ref =  0
     98director.director.tlscacertificatedir.type = path
     99director.director.tlscacertificatedir.required = false
     100director.director.tlscacertificatedir.def =  0
     101director.director.tlscertificate.ref =  0
     102director.director.tlscertificate.type = path
     103director.director.tlscertificate.required = false
     104director.director.tlscertificate.def =  0
     105director.director.tlskey.ref =  0
     106director.director.tlskey.type = path
     107director.director.tlskey.required = false
     108director.director.tlskey.def =  0
     109director.director.tlsdhfile.ref =  0
     110director.director.tlsdhfile.type = path
     111director.director.tlsdhfile.required = false
     112director.director.tlsdhfile.def =  0
     113director.director.tlsallowedcn.ref =  0
     114director.director.tlsallowedcn.type = store_alist_str
     115director.director.tlsallowedcn.required = false
     116director.director.tlsallowedcn.def =  0
     117director.director.statisticsretention.ref =   0
     118director.director.statisticsretention.type = Date
     119director.director.statisticsretention.required = false
     120director.director.statisticsretention.def =  60*60*24*31*12*5
     121director.director.verid.ref =  0
     122director.director.verid.type = String
     123director.director.verid.required = false
     124director.director.verid.def =  0
     125director.console.name.ref =  0
     126director.console.name.type = String
     127director.console.name.required = true
     128director.console.name.def =  0
     129director.console.description.ref =  0
     130director.console.description.type = String
     131director.console.description.required = false
     132director.console.description.def =  0
     133director.console.password.ref =  0
     134director.console.password.type = Password
     135director.console.password.required = true
     136director.console.password.def =  0
     137director.console.jobacl.ref =  Job_ACL
     138director.console.jobacl.type = Acl
     139director.console.jobacl.required = false
     140director.console.jobacl.def =  0
     141director.console.clientacl.ref =  Client_ACL
     142director.console.clientacl.type = Acl
     143director.console.clientacl.required = false
     144director.console.clientacl.def =  0
     145director.console.storageacl.ref =  Storage_ACL
     146director.console.storageacl.type = Acl
     147director.console.storageacl.required = false
     148director.console.storageacl.def =  0
     149director.console.scheduleacl.ref =  Schedule_ACL
     150director.console.scheduleacl.type = Acl
     151director.console.scheduleacl.required = false
     152director.console.scheduleacl.def =  0
     153director.console.runacl.ref =  Run_ACL
     154director.console.runacl.type = Acl
     155director.console.runacl.required = false
     156director.console.runacl.def =  0
     157director.console.poolacl.ref =  Pool_ACL
     158director.console.poolacl.type = Acl
     159director.console.poolacl.required = false
     160director.console.poolacl.def =  0
     161director.console.commandacl.ref =  Command_ACL
     162director.console.commandacl.type = Acl
     163director.console.commandacl.required = false
     164director.console.commandacl.def =  0
     165director.console.filesetacl.ref =  FileSet_ACL
     166director.console.filesetacl.type = Acl
     167director.console.filesetacl.required = false
     168director.console.filesetacl.def =  0
     169director.console.catalogacl.ref =  Catalog_ACL
     170director.console.catalogacl.type = Acl
     171director.console.catalogacl.required = false
     172director.console.catalogacl.def =  0
     173director.console.whereacl.ref =  Where_ACL
     174director.console.whereacl.type = Acl
     175director.console.whereacl.required = false
     176director.console.whereacl.def =  0
     177director.console.pluginoptionsacl.ref =  PluginOptions_ACL
     178director.console.pluginoptionsacl.type = Acl
     179director.console.pluginoptionsacl.required = false
     180director.console.pluginoptionsacl.def =  0
     181director.console.tlsauthenticate.ref =  0
     182director.console.tlsauthenticate.type = store_bool
     183director.console.tlsauthenticate.required = false
     184director.console.tlsauthenticate.def =  0
     185director.console.tlsenable.ref =  0
     186director.console.tlsenable.type = store_bool
     187director.console.tlsenable.required = false
     188director.console.tlsenable.def =  0
     189director.console.tlsrequire.ref =  0
     190director.console.tlsrequire.type = store_bool
     191director.console.tlsrequire.required = false
     192director.console.tlsrequire.def =  0
     193director.console.tlsverifypeer.ref =  0
     194director.console.tlsverifypeer.type = store_bool
     195director.console.tlsverifypeer.required = false
     196director.console.tlsverifypeer.def =  true
     197director.console.tlscacertificatefile.ref =  0
     198director.console.tlscacertificatefile.type = path
     199director.console.tlscacertificatefile.required = false
     200director.console.tlscacertificatefile.def =  0
     201director.console.tlscacertificatedir.ref =  0
     202director.console.tlscacertificatedir.type = path
     203director.console.tlscacertificatedir.required = false
     204director.console.tlscacertificatedir.def =  0
     205director.console.tlscertificate.ref =  0
     206director.console.tlscertificate.type = path
     207director.console.tlscertificate.required = false
     208director.console.tlscertificate.def =  0
     209director.console.tlskey.ref =  0
     210director.console.tlskey.type = path
     211director.console.tlskey.required = false
     212director.console.tlskey.def =  0
     213director.console.tlsdhfile.ref =  0
     214director.console.tlsdhfile.type = path
     215director.console.tlsdhfile.required = false
     216director.console.tlsdhfile.def =  0
     217director.console.tlsallowedcn.ref =  0
     218director.console.tlsallowedcn.type = store_alist_str
     219director.console.tlsallowedcn.required = false
     220director.console.tlsallowedcn.def =  0
     221director.client.name.ref =  0
     222director.client.name.type = String
     223director.client.name.required = true
     224director.client.name.def =  0
     225director.client.description.ref =  0
     226director.client.description.type = String
     227director.client.description.required = false
     228director.client.description.def =  0
     229director.client.address.ref =   0
     230director.client.address.type = String
     231director.client.address.required = true
     232director.client.address.def =  0
     233director.client.fdaddress.ref =   0
     234director.client.fdaddress.type = String
     235director.client.fdaddress.required = false
     236director.client.fdaddress.def =  0
     237director.client.fdport.ref =    0
     238director.client.fdport.type = int
     239director.client.fdport.required = false
     240director.client.fdport.def =  9102
     241director.client.password.ref =  0
     242director.client.password.type = Password
     243director.client.password.required = true
     244director.client.password.def =  0
     245director.client.fdpassword.ref =  0
     246director.client.fdpassword.type = Password
     247director.client.fdpassword.required = false
     248director.client.fdpassword.def =  0
     249director.client.catalog.ref =   R_CATALOG
     250director.client.catalog.type = Resource
     251director.client.catalog.required = true
     252director.client.catalog.def =  0
     253director.client.fileretention.ref =  0
     254director.client.fileretention.type = Date
     255director.client.fileretention.required = false
     256director.client.fileretention.def =  60*60*24*60
     257director.client.jobretention.ref =   0
     258director.client.jobretention.type = Date
     259director.client.jobretention.required = false
     260director.client.jobretention.def =  60*60*24*180
     261director.client.heartbeatinterval.ref =  0
     262director.client.heartbeatinterval.type = Date
     263director.client.heartbeatinterval.required = false
     264director.client.heartbeatinterval.def =  0
     265director.client.autoprune.ref =  0
     266director.client.autoprune.type = store_bool
     267director.client.autoprune.required = false
     268director.client.autoprune.def =  true
     269director.client.maximumconcurrentjobs.ref =  0
     270director.client.maximumconcurrentjobs.type = int
     271director.client.maximumconcurrentjobs.required = false
     272director.client.maximumconcurrentjobs.def =  1
     273director.client.tlsauthenticate.ref =  0
     274director.client.tlsauthenticate.type = store_bool
     275director.client.tlsauthenticate.required = false
     276director.client.tlsauthenticate.def =  0
     277director.client.tlsenable.ref =  0
     278director.client.tlsenable.type = store_bool
     279director.client.tlsenable.required = false
     280director.client.tlsenable.def =  0
     281director.client.tlsrequire.ref =  0
     282director.client.tlsrequire.type = store_bool
     283director.client.tlsrequire.required = false
     284director.client.tlsrequire.def =  0
     285director.client.tlscacertificatefile.ref =  0
     286director.client.tlscacertificatefile.type = path
     287director.client.tlscacertificatefile.required = false
     288director.client.tlscacertificatefile.def =  0
     289director.client.tlscacertificatedir.ref =  0
     290director.client.tlscacertificatedir.type = path
     291director.client.tlscacertificatedir.required = false
     292director.client.tlscacertificatedir.def =  0
     293director.client.tlscertificate.ref =  0
     294director.client.tlscertificate.type = path
     295director.client.tlscertificate.required = false
     296director.client.tlscertificate.def =  0
     297director.client.tlskey.ref =  0
     298director.client.tlskey.type = path
     299director.client.tlskey.required = false
     300director.client.tlskey.def =  0
     301director.client.tlsallowedcn.ref =  0
     302director.client.tlsallowedcn.type = store_alist_str
     303director.client.tlsallowedcn.required = false
     304director.client.tlsallowedcn.def =  0
     305director.storage.name.ref =    0
     306director.storage.name.type = String
     307director.storage.name.required = true
     308director.storage.name.def =  0
     309director.storage.description.ref =    0
     310director.storage.description.type = String
     311director.storage.description.required = false
     312director.storage.description.def =  0
     313director.storage.sdport.ref =      0
     314director.storage.sdport.type = int
     315director.storage.sdport.required = false
     316director.storage.sdport.def =  9103
     317director.storage.address.ref =     0
     318director.storage.address.type = String
     319director.storage.address.required = true
     320director.storage.address.def =  0
     321director.storage.sdaddress.ref =     0
     322director.storage.sdaddress.type = String
     323director.storage.sdaddress.required = false
     324director.storage.sdaddress.def =  0
     325director.storage.password.ref =    0
     326director.storage.password.type = Password
     327director.storage.password.required = true
     328director.storage.password.def =  0
     329director.storage.sdpassword.ref =    0
     330director.storage.sdpassword.type = Password
     331director.storage.sdpassword.required = false
     332director.storage.sdpassword.def =  0
     333director.storage.device.ref =      R_DEVICE
     334director.storage.device.type = store_device
     335director.storage.device.required = true
     336director.storage.device.def =  0
     337director.storage.mediatype.ref =  0
     338director.storage.mediatype.type = String
     339director.storage.mediatype.required = true
     340director.storage.mediatype.def =  0
     341director.storage.autochanger.ref =  0
     342director.storage.autochanger.type = store_bool
     343director.storage.autochanger.required = false
     344director.storage.autochanger.def =  0
     345director.storage.enabled.ref =      0
     346director.storage.enabled.type = store_bool
     347director.storage.enabled.required = false
     348director.storage.enabled.def =  true
     349director.storage.allowcompression.ref =  0
     350director.storage.allowcompression.type = store_bool
     351director.storage.allowcompression.required = false
     352director.storage.allowcompression.def =  true
     353director.storage.heartbeatinterval.ref =  0
     354director.storage.heartbeatinterval.type = Date
     355director.storage.heartbeatinterval.required = false
     356director.storage.heartbeatinterval.def =  0
     357director.storage.maximumconcurrentjobs.ref =  0
     358director.storage.maximumconcurrentjobs.type = int
     359director.storage.maximumconcurrentjobs.required = false
     360director.storage.maximumconcurrentjobs.def =  1
     361director.storage.tlsauthenticate.ref =  0
     362director.storage.tlsauthenticate.type = store_bool
     363director.storage.tlsauthenticate.required = false
     364director.storage.tlsauthenticate.def =  0
     365director.storage.tlsenable.ref =  0
     366director.storage.tlsenable.type = store_bool
     367director.storage.tlsenable.required = false
     368director.storage.tlsenable.def =  0
     369director.storage.tlsrequire.ref =  0
     370director.storage.tlsrequire.type = store_bool
     371director.storage.tlsrequire.required = false
     372director.storage.tlsrequire.def =  0
     373director.storage.tlscacertificatefile.ref =  0
     374director.storage.tlscacertificatefile.type = path
     375director.storage.tlscacertificatefile.required = false
     376director.storage.tlscacertificatefile.def =  0
     377director.storage.tlscacertificatedir.ref =  0
     378director.storage.tlscacertificatedir.type = path
     379director.storage.tlscacertificatedir.required = false
     380director.storage.tlscacertificatedir.def =  0
     381director.storage.tlscertificate.ref =  0
     382director.storage.tlscertificate.type = path
     383director.storage.tlscertificate.required = false
     384director.storage.tlscertificate.def =  0
     385director.storage.tlskey.ref =  0
     386director.storage.tlskey.type = path
     387director.storage.tlskey.required = false
     388director.storage.tlskey.def =  0
     389director.catalog.name.ref =     0
     390director.catalog.name.type = String
     391director.catalog.name.required = true
     392director.catalog.name.def =  0
     393director.catalog.description.ref =     0
     394director.catalog.description.type = String
     395director.catalog.description.required = false
     396director.catalog.description.def =  0
     397director.catalog.address.ref =   0
     398director.catalog.address.type = String
     399director.catalog.address.required = false
     400director.catalog.address.def =  0
     401director.catalog.dbaddress.ref =   0
     402director.catalog.dbaddress.type = String
     403director.catalog.dbaddress.required = false
     404director.catalog.dbaddress.def =  0
     405director.catalog.dbport.ref =       0
     406director.catalog.dbport.type = int
     407director.catalog.dbport.required = false
     408director.catalog.dbport.def =  0
     409director.catalog.password.ref =  0
     410director.catalog.password.type = String
     411director.catalog.password.required = false
     412director.catalog.password.def =  0
     413director.catalog.dbpassword.ref =  0
     414director.catalog.dbpassword.type = String
     415director.catalog.dbpassword.required = false
     416director.catalog.dbpassword.def =  0
     417director.catalog.dbuser.ref =      0
     418director.catalog.dbuser.type = String
     419director.catalog.dbuser.required = false
     420director.catalog.dbuser.def =  0
     421director.catalog.user.ref =      0
     422director.catalog.user.type = String
     423director.catalog.user.required = false
     424director.catalog.user.def =  0
     425director.catalog.dbname.ref =      0
     426director.catalog.dbname.type = String
     427director.catalog.dbname.required = true
     428director.catalog.dbname.def =  0
     429director.catalog.dbdriver.ref =    0
     430director.catalog.dbdriver.type = String
     431director.catalog.dbdriver.required = false
     432director.catalog.dbdriver.def =  0
     433director.catalog.dbsocket.ref =    0
     434director.catalog.dbsocket.type = String
     435director.catalog.dbsocket.required = false
     436director.catalog.dbsocket.def =  0
     437director.catalog.multipleconnections.ref =  0
     438director.catalog.multipleconnections.type = boolean
     439director.catalog.multipleconnections.required = false
     440director.catalog.multipleconnections.def =  0
     441director.job.name.ref =  0
     442director.job.name.type = String
     443director.job.name.required = true
     444director.job.name.def =  0
     445director.job.description.ref =  0
     446director.job.description.type = String
     447director.job.description.required = false
     448director.job.description.def =  0
     449director.job.type.ref =   0
     450director.job.type.type = store_jobtype
     451director.job.type.required = true
     452director.job.type.def =  0
     453director.job.level.ref =     0
     454director.job.level.type = store_level
     455director.job.level.required = false
     456director.job.level.def =  0
     457director.job.messages.ref =  R_MSGS
     458director.job.messages.type = Resource
     459director.job.messages.required = true
     460director.job.messages.def =  0
     461director.job.storage.ref =   R_STORAGE
     462director.job.storage.type = store_alist_res
     463director.job.storage.required = false
     464director.job.storage.def =  0
     465director.job.pool.ref =      R_POOL
     466director.job.pool.type = Resource
     467director.job.pool.required = true
     468director.job.pool.def =  0
     469director.job.fullbackuppool.ref =    R_POOL
     470director.job.fullbackuppool.type = Resource
     471director.job.fullbackuppool.required = false
     472director.job.fullbackuppool.def =  0
     473director.job.incrementalbackuppool.ref =  R_POOL
     474director.job.incrementalbackuppool.type = Resource
     475director.job.incrementalbackuppool.required = false
     476director.job.incrementalbackuppool.def =  0
     477director.job.differentialbackuppool.ref =  R_POOL
     478director.job.differentialbackuppool.type = Resource
     479director.job.differentialbackuppool.required = false
     480director.job.differentialbackuppool.def =  0
     481director.job.client.ref =    R_CLIENT
     482director.job.client.type = Resource
     483director.job.client.required = true
     484director.job.client.def =  0
     485director.job.fileset.ref =   R_FILESET
     486director.job.fileset.type = Resource
     487director.job.fileset.required = true
     488director.job.fileset.def =  0
     489director.job.schedule.ref =  R_SCHEDULE
     490director.job.schedule.type = Resource
     491director.job.schedule.required = false
     492director.job.schedule.def =  0
     493director.job.verifyjob.ref =  R_JOB
     494director.job.verifyjob.type = Resource
     495director.job.verifyjob.required = false
     496director.job.verifyjob.def =  0
     497director.job.jobtoverify.ref =  R_JOB
     498director.job.jobtoverify.type = Resource
     499director.job.jobtoverify.required = false
     500director.job.jobtoverify.def =  0
     501director.job.jobdefs.ref =     R_JOBDEFS
     502director.job.jobdefs.type = Resource
     503director.job.jobdefs.required = false
     504director.job.jobdefs.def =  0
     505director.job.run.ref =  0
     506director.job.run.type = store_alist_str
     507director.job.run.required = false
     508director.job.run.def =  0
     509director.job.where.ref =  0
     510director.job.where.type = path
     511director.job.where.required = false
     512director.job.where.def =  0
     513director.job.regexwhere.ref =  0
     514director.job.regexwhere.type = String
     515director.job.regexwhere.required = false
     516director.job.regexwhere.def =  0
     517director.job.stripprefix.ref =  0
     518director.job.stripprefix.type = String
     519director.job.stripprefix.required = false
     520director.job.stripprefix.def =  0
     521director.job.addprefix.ref =  0
     522director.job.addprefix.type = String
     523director.job.addprefix.required = false
     524director.job.addprefix.def =  0
     525director.job.addsuffix.ref =  0
     526director.job.addsuffix.type = String
     527director.job.addsuffix.required = false
     528director.job.addsuffix.def =  0
     529director.job.bootstrap.ref =  0
     530director.job.bootstrap.type = path
     531director.job.bootstrap.required = false
     532director.job.bootstrap.def =  0
     533director.job.writebootstrap.ref =  0
     534director.job.writebootstrap.type = path
     535director.job.writebootstrap.required = false
     536director.job.writebootstrap.def =  0
     537director.job.writeverifylist.ref =  0
     538director.job.writeverifylist.type = path
     539director.job.writeverifylist.required = false
     540director.job.writeverifylist.def =  0
     541director.job.replace.ref =  0
     542director.job.replace.type = store_replace
     543director.job.replace.required = false
     544director.job.replace.def =  REPLACE_ALWAYS
     545director.job.maxrunschedtime.ref =  0
     546director.job.maxrunschedtime.type = Date
     547director.job.maxrunschedtime.required = false
     548director.job.maxrunschedtime.def =  0
     549director.job.maxruntime.ref =  0
     550director.job.maxruntime.type = Date
     551director.job.maxruntime.required = false
     552director.job.maxruntime.def =  0
     553director.job.fullmaxwaittime.ref =  0
     554director.job.fullmaxwaittime.type = Date
     555director.job.fullmaxwaittime.required = false
     556director.job.fullmaxwaittime.def =  0
     557director.job.incrementalmaxwaittime.ref =  0
     558director.job.incrementalmaxwaittime.type = Date
     559director.job.incrementalmaxwaittime.required = false
     560director.job.incrementalmaxwaittime.def =  0
     561director.job.differentialmaxwaittime.ref =  0
     562director.job.differentialmaxwaittime.type = Date
     563director.job.differentialmaxwaittime.required = false
     564director.job.differentialmaxwaittime.def =  0
     565director.job.fullmaxruntime.ref =  0
     566director.job.fullmaxruntime.type = Date
     567director.job.fullmaxruntime.required = false
     568director.job.fullmaxruntime.def =  0
     569director.job.incrementalmaxruntime.ref =  0
     570director.job.incrementalmaxruntime.type = Date
     571director.job.incrementalmaxruntime.required = false
     572director.job.incrementalmaxruntime.def =  0
     573director.job.differentialmaxruntime.ref =  0
     574director.job.differentialmaxruntime.type = Date
     575director.job.differentialmaxruntime.required = false
     576director.job.differentialmaxruntime.def =  0
     577director.job.maxwaittime.ref =  0
     578director.job.maxwaittime.type = Date
     579director.job.maxwaittime.required = false
     580director.job.maxwaittime.def =  0
     581director.job.maxstartdelay.ref =  0
     582director.job.maxstartdelay.type = Date
     583director.job.maxstartdelay.required = false
     584director.job.maxstartdelay.def =  0
     585director.job.maxfullinterval.ref =  0
     586director.job.maxfullinterval.type = Date
     587director.job.maxfullinterval.required = false
     588director.job.maxfullinterval.def =  0
     589director.job.maxdiffinterval.ref =  0
     590director.job.maxdiffinterval.type = Date
     591director.job.maxdiffinterval.required = false
     592director.job.maxdiffinterval.def =  0
     593director.job.prefixlinks.ref =  0
     594director.job.prefixlinks.type = store_bool
     595director.job.prefixlinks.required = false
     596director.job.prefixlinks.def =  false
     597director.job.prunejobs.ref =  0
     598director.job.prunejobs.type = store_bool
     599director.job.prunejobs.required = false
     600director.job.prunejobs.def =  false
     601director.job.prunefiles.ref =  0
     602director.job.prunefiles.type = store_bool
     603director.job.prunefiles.required = false
     604director.job.prunefiles.def =  false
     605director.job.prunevolumes.ref =  0
     606director.job.prunevolumes.type = store_bool
     607director.job.prunevolumes.required = false
     608director.job.prunevolumes.def =  false
     609director.job.enabled.ref =  0
     610director.job.enabled.type = store_bool
     611director.job.enabled.required = false
     612director.job.enabled.def =  true
     613director.job.spoolattributes.ref =  0
     614director.job.spoolattributes.type = store_bool
     615director.job.spoolattributes.required = false
     616director.job.spoolattributes.def =  false
     617director.job.spooldata.ref =  0
     618director.job.spooldata.type = store_bool
     619director.job.spooldata.required = false
     620director.job.spooldata.def =  false
     621director.job.spoolsize.ref =  0
     622director.job.spoolsize.type = store_size64
     623director.job.spoolsize.required = false
     624director.job.spoolsize.def =  0
     625director.job.rerunfailedlevels.ref =  0
     626director.job.rerunfailedlevels.type = store_bool
     627director.job.rerunfailedlevels.required = false
     628director.job.rerunfailedlevels.def =  false
     629director.job.prefermountedvolumes.ref =  0
     630director.job.prefermountedvolumes.type = store_bool
     631director.job.prefermountedvolumes.required = false
     632director.job.prefermountedvolumes.def =  true
     633director.job.runbeforejob.ref =   0
     634director.job.runbeforejob.type = store_short_runscript
     635director.job.runbeforejob.required = false
     636director.job.runbeforejob.def =  0
     637director.job.runafterjob.ref =   0
     638director.job.runafterjob.type = store_short_runscript
     639director.job.runafterjob.required = false
     640director.job.runafterjob.def =  0
     641director.job.runafterfailedjob.ref =   0
     642director.job.runafterfailedjob.type = store_short_runscript
     643director.job.runafterfailedjob.required = false
     644director.job.runafterfailedjob.def =  0
     645director.job.clientrunbeforejob.ref =   0
     646director.job.clientrunbeforejob.type = store_short_runscript
     647director.job.clientrunbeforejob.required = false
     648director.job.clientrunbeforejob.def =  0
     649director.job.clientrunafterjob.ref =   0
     650director.job.clientrunafterjob.type = store_short_runscript
     651director.job.clientrunafterjob.required = false
     652director.job.clientrunafterjob.def =  0
     653director.job.maximumconcurrentjobs.ref =  0
     654director.job.maximumconcurrentjobs.type = int
     655director.job.maximumconcurrentjobs.required = false
     656director.job.maximumconcurrentjobs.def =  1
     657director.job.rescheduleonerror.ref =  0
     658director.job.rescheduleonerror.type = store_bool
     659director.job.rescheduleonerror.required = false
     660director.job.rescheduleonerror.def =  false
     661director.job.rescheduleinterval.ref =  0
     662director.job.rescheduleinterval.type = Date
     663director.job.rescheduleinterval.required = false
     664director.job.rescheduleinterval.def =  60 * 30
     665director.job.rescheduletimes.ref =  0
     666director.job.rescheduletimes.type = int
     667director.job.rescheduletimes.required = false
     668director.job.rescheduletimes.def =  0
     669director.job.priority.ref =  0
     670director.job.priority.type = int
     671director.job.priority.required = false
     672director.job.priority.def =  10
     673director.job.allowmixedpriority.ref =  0
     674director.job.allowmixedpriority.type = store_bool
     675director.job.allowmixedpriority.required = false
     676director.job.allowmixedpriority.def =  false
     677director.job.writepartafterjob.ref =  0
     678director.job.writepartafterjob.type = store_bool
     679director.job.writepartafterjob.required = false
     680director.job.writepartafterjob.def =  true
     681director.job.selectionpattern.ref =  0
     682director.job.selectionpattern.type = String
     683director.job.selectionpattern.required = false
     684director.job.selectionpattern.def =  0
     685director.job.runscript.ref =  0
     686director.job.runscript.type = store_runscript
     687director.job.runscript.required = false
     688director.job.runscript.def =  0
     689director.job.selectiontype.ref =  0
     690director.job.selectiontype.type = store_migtype
     691director.job.selectiontype.required = false
     692director.job.selectiontype.def =  0
     693director.job.accurate.ref =  0
     694director.job.accurate.type = store_bool
     695director.job.accurate.required = false
     696director.job.accurate.def = 0
     697director.job.allowduplicatejobs.ref =  0
     698director.job.allowduplicatejobs.type = store_bool
     699director.job.allowduplicatejobs.required = false
     700director.job.allowduplicatejobs.def =  true
     701director.job.allowhigherduplicates.ref =  0
     702director.job.allowhigherduplicates.type = store_bool
     703director.job.allowhigherduplicates.required = false
     704director.job.allowhigherduplicates.def =  true
     705director.job.cancellowerlevelduplicates.ref =  0
     706director.job.cancellowerlevelduplicates.type = store_bool
     707director.job.cancellowerlevelduplicates.required = false
     708director.job.cancellowerlevelduplicates.def =  false
     709director.job.cancelqueuedduplicates.ref =  0
     710director.job.cancelqueuedduplicates.type = store_bool
     711director.job.cancelqueuedduplicates.required = false
     712director.job.cancelqueuedduplicates.def =  false
     713director.job.cancelrunningduplicates.ref =  0
     714director.job.cancelrunningduplicates.type = store_bool
     715director.job.cancelrunningduplicates.required = false
     716director.job.cancelrunningduplicates.def =  false
     717director.job.pluginoptions.ref =  0
     718director.job.pluginoptions.type = String
     719director.job.pluginoptions.required = false
     720director.job.pluginoptions.def =  0
     721director.job.base.ref =   R_JOB
     722director.job.base.type = store_alist_res
     723director.job.base.required = false
     724director.job.base.def =  0
     725director.fileset.name.ref =  0
     726director.fileset.name.type = String
     727director.fileset.name.required = true
     728director.fileset.name.def =  0
     729director.fileset.description.ref =  0
     730director.fileset.description.type = String
     731director.fileset.description.required = false
     732director.fileset.description.def =  0
     733director.fileset.include.ref =                    0
     734director.fileset.include.type = store_inc
     735director.fileset.include.required = false
     736director.fileset.include.def =  0
     737director.fileset.exclude.ref =                    1
     738director.fileset.exclude.type = store_inc
     739director.fileset.exclude.required = false
     740director.fileset.exclude.def =  0
     741director.fileset.ignorefilesetchanges.ref =  0
     742director.fileset.ignorefilesetchanges.type = store_bool
     743director.fileset.ignorefilesetchanges.required = false
     744director.fileset.ignorefilesetchanges.def =  false
     745director.fileset.enablevss.ref =  0
     746director.fileset.enablevss.type = store_bool
     747director.fileset.enablevss.required = false
     748director.fileset.enablevss.def =  true
     749director.schedule.name.ref =  0
     750director.schedule.name.type = String
     751director.schedule.name.required = true
     752director.schedule.name.def =  0
     753director.schedule.description.ref =  0
     754director.schedule.description.type = String
     755director.schedule.description.required = false
     756director.schedule.description.def =  0
     757director.schedule.run.ref =       0
     758director.schedule.run.type = store_run
     759director.schedule.run.required = false
     760director.schedule.run.def =  0
     761director.pool.name.ref =       0
     762director.pool.name.type = String
     763director.pool.name.required = true
     764director.pool.name.def =  0
     765director.pool.description.ref =       0
     766director.pool.description.type = String
     767director.pool.description.required = false
     768director.pool.description.def =      0
     769director.pool.pooltype.ref =      0
     770director.pool.pooltype.type = String
     771director.pool.pooltype.required = true
     772director.pool.pooltype.def =  0
     773director.pool.labelformat.ref =   0
     774director.pool.labelformat.type = String
     775director.pool.labelformat.required = false
     776director.pool.labelformat.def =      0
     777director.pool.cleaningprefix.ref =  0
     778director.pool.cleaningprefix.type = String
     779director.pool.cleaningprefix.required = false
     780director.pool.cleaningprefix.def =    0
     781director.pool.usecatalog.ref =     0
     782director.pool.usecatalog.type = store_bool
     783director.pool.usecatalog.required = false
     784director.pool.usecatalog.def =  true
     785director.pool.usevolumeonce.ref =  0
     786director.pool.usevolumeonce.type = store_bool
     787director.pool.usevolumeonce.required = false
     788director.pool.usevolumeonce.def =    0
     789director.pool.purgeoldestvolume.ref =  0
     790director.pool.purgeoldestvolume.type = store_bool
     791director.pool.purgeoldestvolume.required = false
     792director.pool.purgeoldestvolume.def =  0
     793director.pool.actiononpurge.ref =  0
     794director.pool.actiononpurge.type = store_actiononpurge
     795director.pool.actiononpurge.required = false
     796director.pool.actiononpurge.def =  0
     797director.pool.recycleoldestvolume.ref =  0
     798director.pool.recycleoldestvolume.type = store_bool
     799director.pool.recycleoldestvolume.required = false
     800director.pool.recycleoldestvolume.def =  0
     801director.pool.recyclecurrentvolume.ref =  0
     802director.pool.recyclecurrentvolume.type = store_bool
     803director.pool.recyclecurrentvolume.required = false
     804director.pool.recyclecurrentvolume.def =  0
     805director.pool.maximumvolumes.ref =    0
     806director.pool.maximumvolumes.type = int
     807director.pool.maximumvolumes.required = false
     808director.pool.maximumvolumes.def =         0
     809director.pool.maximumvolumejobs.ref =     0
     810director.pool.maximumvolumejobs.type = int
     811director.pool.maximumvolumejobs.required = false
     812director.pool.maximumvolumejobs.def =        0
     813director.pool.maximumvolumefiles.ref =    0
     814director.pool.maximumvolumefiles.type = int
     815director.pool.maximumvolumefiles.required = false
     816director.pool.maximumvolumefiles.def =        0
     817director.pool.maximumvolumebytes.ref =    0
     818director.pool.maximumvolumebytes.type = store_size64
     819director.pool.maximumvolumebytes.required = false
     820director.pool.maximumvolumebytes.def =        0
     821director.pool.catalogfiles.ref =   0
     822director.pool.catalogfiles.type = store_bool
     823director.pool.catalogfiles.required = false
     824director.pool.catalogfiles.def =  true
     825director.pool.volumeretention.ref =    0
     826director.pool.volumeretention.type = Date
     827director.pool.volumeretention.required = false
     828director.pool.volumeretention.def =  60*60*24*365
     829director.pool.volumeuseduration.ref =  0
     830director.pool.volumeuseduration.type = Date
     831director.pool.volumeuseduration.required = false
     832director.pool.volumeuseduration.def =  0
     833director.pool.migrationtime.ref =  0
     834director.pool.migrationtime.type = Date
     835director.pool.migrationtime.required = false
     836director.pool.migrationtime.def =  0
     837director.pool.migrationhighbytes.ref =  0
     838director.pool.migrationhighbytes.type = store_size64
     839director.pool.migrationhighbytes.required = false
     840director.pool.migrationhighbytes.def =  0
     841director.pool.migrationlowbytes.ref =  0
     842director.pool.migrationlowbytes.type = store_size64
     843director.pool.migrationlowbytes.required = false
     844director.pool.migrationlowbytes.def =  0
     845director.pool.nextpool.ref =  R_POOL
     846director.pool.nextpool.type = Resource
     847director.pool.nextpool.required = false
     848director.pool.nextpool.def =  0
     849director.pool.storage.ref =   R_STORAGE
     850director.pool.storage.type = store_alist_res
     851director.pool.storage.required = false
     852director.pool.storage.def =  0
     853director.pool.autoprune.ref =  0
     854director.pool.autoprune.type = store_bool
     855director.pool.autoprune.required = false
     856director.pool.autoprune.def =  true
     857director.pool.recycle.ref =    0
     858director.pool.recycle.type = store_bool
     859director.pool.recycle.required = false
     860director.pool.recycle.def =  true
     861director.pool.recyclepool.ref =  R_POOL
     862director.pool.recyclepool.type = Resource
     863director.pool.recyclepool.required = false
     864director.pool.recyclepool.def =  0
     865director.pool.scratchpool.ref =  R_POOL
     866director.pool.scratchpool.type = Resource
     867director.pool.scratchpool.required = false
     868director.pool.scratchpool.def =  0
     869director.pool.copypool.ref =  R_POOL
     870director.pool.copypool.type = store_alist_res
     871director.pool.copypool.required = false
     872director.pool.copypool.def =  0
     873director.pool.catalog.ref =  R_CATALOG
     874director.pool.catalog.type = Resource
     875director.pool.catalog.required = false
     876director.pool.catalog.def =  0
     877director.pool.fileretention.ref =  0
     878director.pool.fileretention.type = Date
     879director.pool.fileretention.required = false
     880director.pool.fileretention.def =  0
     881director.pool.jobretention.ref =   0
     882director.pool.jobretention.type = Date
     883director.pool.jobretention.required = false
     884director.pool.jobretention.def =  0
     885director.counter.name.ref =         0
     886director.counter.name.type = String
     887director.counter.name.required = true
     888director.counter.name.def =  0
     889director.counter.description.ref =         0
     890director.counter.description.type = String
     891director.counter.description.required = false
     892director.counter.description.def =      0
     893director.counter.minimum.ref =         0
     894director.counter.minimum.type = store_int32
     895director.counter.minimum.required = false
     896director.counter.minimum.def =  0
     897director.counter.maximum.ref =         0
     898director.counter.maximum.type = int
     899director.counter.maximum.required = false
     900director.counter.maximum.def =  INT32_MAX
     901director.counter.wrapcounter.ref =      R_COUNTER
     902director.counter.wrapcounter.type = Resource
     903director.counter.wrapcounter.required = false
     904director.counter.wrapcounter.def =  0
     905director.counter.catalog.ref =          R_CATALOG
     906director.counter.catalog.type = Resource
     907director.counter.catalog.required = false
     908director.counter.catalog.def =  0
     909director.runscript.runsonsuccess.ref = 0
     910director.runscript.runsonsuccess.type = store_runscript_bool
     911director.runscript.runsonsuccess.required = false
     912director.runscript.runsonsuccess.def =  0
     913director.runscript.runsonfailure.ref = 0
     914director.runscript.runsonfailure.type = store_runscript_bool
     915director.runscript.runsonfailure.required = false
     916director.runscript.runsonfailure.def =  0
     917director.runscript.failjobonerror.ref = 0
     918director.runscript.failjobonerror.type = store_runscript_bool
     919director.runscript.failjobonerror.required = false
     920director.runscript.failjobonerror.def =  0
     921director.runscript.abortjobonerror.ref = 0
     922director.runscript.abortjobonerror.type = store_runscript_bool
     923director.runscript.abortjobonerror.required = false
     924director.runscript.abortjobonerror.def =  0
     925director.runscript.runswhen.ref =       0
     926director.runscript.runswhen.type = store_runscript_when
     927director.runscript.runswhen.required = false
     928director.runscript.runswhen.def =  0
     929storagedaemon.storage.name.ref =    0
     930storagedaemon.storage.name.type = String
     931storagedaemon.storage.name.required = true
     932storagedaemon.storage.name.def =  0
     933storagedaemon.storage.description.ref =      0
     934storagedaemon.storage.description.type = String
     935storagedaemon.storage.description.required = false
     936storagedaemon.storage.description.def =  0
     937storagedaemon.storage.sdaddress.ref =      0
     938storagedaemon.storage.sdaddress.type = store_addresses_address
     939storagedaemon.storage.sdaddress.required = false
     940storagedaemon.storage.sdaddress.def =  9103
     941storagedaemon.storage.sdaddresses.ref =  0
     942storagedaemon.storage.sdaddresses.type = store_addresses
     943storagedaemon.storage.sdaddresses.required = false
     944storagedaemon.storage.sdaddresses.def =  9103
     945storagedaemon.storage.messages.ref =    R_MSGS
     946storagedaemon.storage.messages.type = Resource
     947storagedaemon.storage.messages.required = false
     948storagedaemon.storage.messages.def =  0
     949storagedaemon.storage.sdport.ref =      0
     950storagedaemon.storage.sdport.type = store_addresses_port
     951storagedaemon.storage.sdport.required = false
     952storagedaemon.storage.sdport.def =  9103
     953storagedaemon.storage.workingdirectory.ref =  0
     954storagedaemon.storage.workingdirectory.type = path
     955storagedaemon.storage.workingdirectory.required = true
     956storagedaemon.storage.workingdirectory.def =  0
     957storagedaemon.storage.piddirectory.ref =  0
     958storagedaemon.storage.piddirectory.type = path
     959storagedaemon.storage.piddirectory.required = true
     960storagedaemon.storage.piddirectory.def =  0
     961storagedaemon.storage.subsysdirectory.ref =  0
     962storagedaemon.storage.subsysdirectory.type = path
     963storagedaemon.storage.subsysdirectory.required = false
     964storagedaemon.storage.subsysdirectory.def =  0
     965storagedaemon.storage.plugindirectory.ref =  0
     966storagedaemon.storage.plugindirectory.type = path
     967storagedaemon.storage.plugindirectory.required = false
     968storagedaemon.storage.plugindirectory.def =  0
     969storagedaemon.storage.scriptsdirectory.ref =  0
     970storagedaemon.storage.scriptsdirectory.type = path
     971storagedaemon.storage.scriptsdirectory.required = false
     972storagedaemon.storage.scriptsdirectory.def =  0
     973storagedaemon.storage.maximumconcurrentjobs.ref =  0
     974storagedaemon.storage.maximumconcurrentjobs.type = int
     975storagedaemon.storage.maximumconcurrentjobs.required = false
     976storagedaemon.storage.maximumconcurrentjobs.def =  20
     977storagedaemon.storage.heartbeatinterval.ref =  0
     978storagedaemon.storage.heartbeatinterval.type = Date
     979storagedaemon.storage.heartbeatinterval.required = false
     980storagedaemon.storage.heartbeatinterval.def =  0
     981storagedaemon.storage.tlsauthenticate.ref =  0
     982storagedaemon.storage.tlsauthenticate.type = store_bool
     983storagedaemon.storage.tlsauthenticate.required = false
     984storagedaemon.storage.tlsauthenticate.def =  0
     985storagedaemon.storage.tlsenable.ref =  0
     986storagedaemon.storage.tlsenable.type = store_bool
     987storagedaemon.storage.tlsenable.required = false
     988storagedaemon.storage.tlsenable.def =  0
     989storagedaemon.storage.tlsrequire.ref =  0
     990storagedaemon.storage.tlsrequire.type = store_bool
     991storagedaemon.storage.tlsrequire.required = false
     992storagedaemon.storage.tlsrequire.def =  0
     993storagedaemon.storage.tlsverifypeer.ref =  1
     994storagedaemon.storage.tlsverifypeer.type = store_bool
     995storagedaemon.storage.tlsverifypeer.required = false
     996storagedaemon.storage.tlsverifypeer.def =  1
     997storagedaemon.storage.tlscacertificatefile.ref =  0
     998storagedaemon.storage.tlscacertificatefile.type = path
     999storagedaemon.storage.tlscacertificatefile.required = false
     1000storagedaemon.storage.tlscacertificatefile.def =  0
     1001storagedaemon.storage.tlscacertificatedir.ref =  0
     1002storagedaemon.storage.tlscacertificatedir.type = path
     1003storagedaemon.storage.tlscacertificatedir.required = false
     1004storagedaemon.storage.tlscacertificatedir.def =  0
     1005storagedaemon.storage.tlscertificate.ref =  0
     1006storagedaemon.storage.tlscertificate.type = path
     1007storagedaemon.storage.tlscertificate.required = false
     1008storagedaemon.storage.tlscertificate.def =  0
     1009storagedaemon.storage.tlskey.ref =  0
     1010storagedaemon.storage.tlskey.type = path
     1011storagedaemon.storage.tlskey.required = false
     1012storagedaemon.storage.tlskey.def =  0
     1013storagedaemon.storage.tlsdhfile.ref =  0
     1014storagedaemon.storage.tlsdhfile.type = path
     1015storagedaemon.storage.tlsdhfile.required = false
     1016storagedaemon.storage.tlsdhfile.def =  0
     1017storagedaemon.storage.tlsallowedcn.ref =  0
     1018storagedaemon.storage.tlsallowedcn.type = store_alist_str
     1019storagedaemon.storage.tlsallowedcn.required = false
     1020storagedaemon.storage.tlsallowedcn.def =  0
     1021storagedaemon.storage.clientconnectwait.ref =  0
     1022storagedaemon.storage.clientconnectwait.type = Date
     1023storagedaemon.storage.clientconnectwait.required = false
     1024storagedaemon.storage.clientconnectwait.def =  30 * 60
     1025storagedaemon.storage.verid.ref =  0
     1026storagedaemon.storage.verid.type = String
     1027storagedaemon.storage.verid.required = false
     1028storagedaemon.storage.verid.def =  0
    1011029storagedaemon.director.name.ref =    0
    1021030storagedaemon.director.name.type = String
    103 storagedaemon.director.name.required = false
     1031storagedaemon.director.name.required = true
    1041032storagedaemon.director.name.def =  0
    1051033storagedaemon.director.description.ref =    0
     
    1091037storagedaemon.director.password.ref =    0
    1101038storagedaemon.director.password.type = Password
    111 storagedaemon.director.password.required = false
     1039storagedaemon.director.password.required = true
    1121040storagedaemon.director.password.def =  0
    1131041storagedaemon.director.monitor.ref =     0
     
    1571085storagedaemon.device.name.ref =     0
    1581086storagedaemon.device.name.type = String
    159 storagedaemon.device.name.required = false
     1087storagedaemon.device.name.required = true
    1601088storagedaemon.device.name.def =  0
    1611089storagedaemon.device.description.ref =     0
     
    1651093storagedaemon.device.mediatype.ref =   0
    1661094storagedaemon.device.mediatype.type = String
    167 storagedaemon.device.mediatype.required = false
     1095storagedaemon.device.mediatype.required = true
    1681096storagedaemon.device.mediatype.def =  0
    1691097storagedaemon.device.devicetype.ref =     0
     
    1731101storagedaemon.device.archivedevice.ref =  0
    1741102storagedaemon.device.archivedevice.type = String
    175 storagedaemon.device.archivedevice.required = false
     1103storagedaemon.device.archivedevice.required = true
    1761104storagedaemon.device.archivedevice.def =  0
    1771105storagedaemon.device.hardwareendoffile.ref =  CAP_EOF
     
    3731301storagedaemon.autochanger.name.ref =         0
    3741302storagedaemon.autochanger.name.type = String
    375 storagedaemon.autochanger.name.required = false
     1303storagedaemon.autochanger.name.required = true
    3761304storagedaemon.autochanger.name.def =  0
    3771305storagedaemon.autochanger.description.ref =         0
     
    3811309storagedaemon.autochanger.device.ref =    R_DEVICE
    3821310storagedaemon.autochanger.device.type = store_alist_res
    383 storagedaemon.autochanger.device.required = false
     1311storagedaemon.autochanger.device.required = true
    3841312storagedaemon.autochanger.device.def =  0
    3851313storagedaemon.autochanger.changerdevice.ref =     0
    3861314storagedaemon.autochanger.changerdevice.type = String
    387 storagedaemon.autochanger.changerdevice.required = false
     1315storagedaemon.autochanger.changerdevice.required = true
    3881316storagedaemon.autochanger.changerdevice.def =  0
    3891317storagedaemon.autochanger.changercommand.ref =  0
    3901318storagedaemon.autochanger.changercommand.type = String
    391 storagedaemon.autochanger.changercommand.required = false
     1319storagedaemon.autochanger.changercommand.required = true
    3921320storagedaemon.autochanger.changercommand.def =  0
    3931321filedaemon.client.name.ref =  0
    3941322filedaemon.client.name.type = String
    395 filedaemon.client.name.required = false
     1323filedaemon.client.name.required = true
    3961324filedaemon.client.name.def =  0
    3971325filedaemon.client.description.ref =  0
     
    4171345filedaemon.client.workingdirectory.ref =  0
    4181346filedaemon.client.workingdirectory.type = path
    419 filedaemon.client.workingdirectory.required = false
     1347filedaemon.client.workingdirectory.required = true
    4201348filedaemon.client.workingdirectory.def =  0
    4211349filedaemon.client.piddirectory.ref =      0
    4221350filedaemon.client.piddirectory.type = path
    423 filedaemon.client.piddirectory.required = false
     1351filedaemon.client.piddirectory.required = true
    4241352filedaemon.client.piddirectory.def =  0
    4251353filedaemon.client.subsysdirectory.ref =   0
     
    5091437filedaemon.director.name.ref =   0
    5101438filedaemon.director.name.type = String
    511 filedaemon.director.name.required = false
     1439filedaemon.director.name.required = true
    5121440filedaemon.director.name.def =  0
    5131441filedaemon.director.description.ref =   0
     
    5171445filedaemon.director.password.ref =   0
    5181446filedaemon.director.password.type = Password
    519 filedaemon.director.password.required = false
     1447filedaemon.director.password.required = true
    5201448filedaemon.director.password.def =  0
    5211449filedaemon.director.address.ref =    0
     
    5671495filedaemon.director.tlsallowedcn.required = false
    5681496filedaemon.director.tlsallowedcn.def =  0
    569 director.director.name.ref =  0
    570 director.director.name.type = String
    571 director.director.name.required = false
    572 director.director.name.def =  0
    573 director.director.description.ref =  0
    574 director.director.description.type = String
    575 director.director.description.required = false
    576 director.director.description.def =  0
    577 director.director.messages.ref =  R_MSGS
    578 director.director.messages.type = Resource
    579 director.director.messages.required = false
    580 director.director.messages.def =  0
    581 director.director.dirport.ref =   0
    582 director.director.dirport.type = store_addresses_port
    583 director.director.dirport.required = false
    584 director.director.dirport.def =  9101
    585 director.director.diraddress.ref =   0
    586 director.director.diraddress.type = store_addresses_address
    587 director.director.diraddress.required = false
    588 director.director.diraddress.def =  9101
    589 director.director.diraddresses.ref =   0
    590 director.director.diraddresses.type = store_addresses
    591 director.director.diraddresses.required = false
    592 director.director.diraddresses.def =  9101
    593 director.director.dirsourceaddress.ref =   0
    594 director.director.dirsourceaddress.type = store_addresses_address
    595 director.director.dirsourceaddress.required = false
    596 director.director.dirsourceaddress.def =  0
    597 director.director.queryfile.ref =  0
    598 director.director.queryfile.type = path
    599 director.director.queryfile.required = false
    600 director.director.queryfile.def =  0
    601 director.director.workingdirectory.ref =  0
    602 director.director.workingdirectory.type = path
    603 director.director.workingdirectory.required = false
    604 director.director.workingdirectory.def =  0
    605 director.director.plugindirectory.ref =   0
    606 director.director.plugindirectory.type = path
    607 director.director.plugindirectory.required = false
    608 director.director.plugindirectory.def =  0
    609 director.director.scriptsdirectory.ref =  0
    610 director.director.scriptsdirectory.type = path
    611 director.director.scriptsdirectory.required = false
    612 director.director.scriptsdirectory.def =  0
    613 director.director.piddirectory.ref =      0
    614 director.director.piddirectory.type = path
    615 director.director.piddirectory.required = false
    616 director.director.piddirectory.def =  0
    617 director.director.subsysdirectory.ref =   0
    618 director.director.subsysdirectory.type = path
    619 director.director.subsysdirectory.required = false
    620 director.director.subsysdirectory.def =  0
    621 director.director.maximumconcurrentjobs.ref =  0
    622 director.director.maximumconcurrentjobs.type = int
    623 director.director.maximumconcurrentjobs.required = false
    624 director.director.maximumconcurrentjobs.def =  1
    625 director.director.maximumconsoleconnections.ref =  0
    626 director.director.maximumconsoleconnections.type = int
    627 director.director.maximumconsoleconnections.required = false
    628 director.director.maximumconsoleconnections.def =  20
    629 director.director.password.ref =  0
    630 director.director.password.type = Password
    631 director.director.password.required = false
    632 director.director.password.def =  0
    633 director.director.fdconnecttimeout.ref =  0
    634 director.director.fdconnecttimeout.type = Date
    635 director.director.fdconnecttimeout.required = false
    636 director.director.fdconnecttimeout.def =  3 * 60
    637 director.director.sdconnecttimeout.ref =  0
    638 director.director.sdconnecttimeout.type = Date
    639 director.director.sdconnecttimeout.required = false
    640 director.director.sdconnecttimeout.def =  30 * 60
    641 director.director.heartbeatinterval.ref =  0
    642 director.director.heartbeatinterval.type = Date
    643 director.director.heartbeatinterval.required = false
    644 director.director.heartbeatinterval.def =  0
    645 director.director.tlsauthenticate.ref =  0
    646 director.director.tlsauthenticate.type = store_bool
    647 director.director.tlsauthenticate.required = false
    648 director.director.tlsauthenticate.def =  0
    649 director.director.tlsenable.ref =  0
    650 director.director.tlsenable.type = store_bool
    651 director.director.tlsenable.required = false
    652 director.director.tlsenable.def =  0
    653 director.director.tlsrequire.ref =  0
    654 director.director.tlsrequire.type = store_bool
    655 director.director.tlsrequire.required = false
    656 director.director.tlsrequire.def =  0
    657 director.director.tlsverifypeer.ref =  0
    658 director.director.tlsverifypeer.type = store_bool
    659 director.director.tlsverifypeer.required = false
    660 director.director.tlsverifypeer.def =  true
    661 director.director.tlscacertificatefile.ref =  0
    662 director.director.tlscacertificatefile.type = path
    663 director.director.tlscacertificatefile.required = false
    664 director.director.tlscacertificatefile.def =  0
    665 director.director.tlscacertificatedir.ref =  0
    666 director.director.tlscacertificatedir.type = path
    667 director.director.tlscacertificatedir.required = false
    668 director.director.tlscacertificatedir.def =  0
    669 director.director.tlscertificate.ref =  0
    670 director.director.tlscertificate.type = path
    671 director.director.tlscertificate.required = false
    672 director.director.tlscertificate.def =  0
    673 director.director.tlskey.ref =  0
    674 director.director.tlskey.type = path
    675 director.director.tlskey.required = false
    676 director.director.tlskey.def =  0
    677 director.director.tlsdhfile.ref =  0
    678 director.director.tlsdhfile.type = path
    679 director.director.tlsdhfile.required = false
    680 director.director.tlsdhfile.def =  0
    681 director.director.tlsallowedcn.ref =  0
    682 director.director.tlsallowedcn.type = store_alist_str
    683 director.director.tlsallowedcn.required = false
    684 director.director.tlsallowedcn.def =  0
    685 director.director.statisticsretention.ref =   0
    686 director.director.statisticsretention.type = Date
    687 director.director.statisticsretention.required = false
    688 director.director.statisticsretention.def =  60*60*24*31*12*5
    689 director.director.verid.ref =  0
    690 director.director.verid.type = String
    691 director.director.verid.required = false
    692 director.director.verid.def =  0
    693 director.console.name.ref =  0
    694 director.console.name.type = String
    695 director.console.name.required = false
    696 director.console.name.def =  0
    697 director.console.description.ref =  0
    698 director.console.description.type = String
    699 director.console.description.required = false
    700 director.console.description.def =  0
    701 director.console.password.ref =  0
    702 director.console.password.type = Password
    703 director.console.password.required = false
    704 director.console.password.def =  0
    705 director.console.jobacl.ref =  Job_ACL
    706 director.console.jobacl.type = Acl
    707 director.console.jobacl.required = false
    708 director.console.jobacl.def =  0
    709 director.console.clientacl.ref =  Client_ACL
    710 director.console.clientacl.type = Acl
    711 director.console.clientacl.required = false
    712 director.console.clientacl.def =  0
    713 director.console.storageacl.ref =  Storage_ACL
    714 director.console.storageacl.type = Acl
    715 director.console.storageacl.required = false
    716 director.console.storageacl.def =  0
    717 director.console.scheduleacl.ref =  Schedule_ACL
    718 director.console.scheduleacl.type = Acl
    719 director.console.scheduleacl.required = false
    720 director.console.scheduleacl.def =  0
    721 director.console.runacl.ref =  Run_ACL
    722 director.console.runacl.type = Acl
    723 director.console.runacl.required = false
    724 director.console.runacl.def =  0
    725 director.console.poolacl.ref =  Pool_ACL
    726 director.console.poolacl.type = Acl
    727 director.console.poolacl.required = false
    728 director.console.poolacl.def =  0
    729 director.console.commandacl.ref =  Command_ACL
    730 director.console.commandacl.type = Acl
    731 director.console.commandacl.required = false
    732 director.console.commandacl.def =  0
    733 director.console.filesetacl.ref =  FileSet_ACL
    734 director.console.filesetacl.type = Acl
    735 director.console.filesetacl.required = false
    736 director.console.filesetacl.def =  0
    737 director.console.catalogacl.ref =  Catalog_ACL
    738 director.console.catalogacl.type = Acl
    739 director.console.catalogacl.required = false
    740 director.console.catalogacl.def =  0
    741 director.console.whereacl.ref =  Where_ACL
    742 director.console.whereacl.type = Acl
    743 director.console.whereacl.required = false
    744 director.console.whereacl.def =  0
    745 director.console.pluginoptionsacl.ref =  PluginOptions_ACL
    746 director.console.pluginoptionsacl.type = Acl
    747 director.console.pluginoptionsacl.required = false
    748 director.console.pluginoptionsacl.def =  0
    749 director.console.tlsauthenticate.ref =  0
    750 director.console.tlsauthenticate.type = store_bool
    751 director.console.tlsauthenticate.required = false
    752 director.console.tlsauthenticate.def =  0
    753 director.console.tlsenable.ref =  0
    754 director.console.tlsenable.type = store_bool
    755 director.console.tlsenable.required = false
    756 director.console.tlsenable.def =  0
    757 director.console.tlsrequire.ref =  0
    758 director.console.tlsrequire.type = store_bool
    759 director.console.tlsrequire.required = false
    760 director.console.tlsrequire.def =  0
    761 director.console.tlsverifypeer.ref =  0
    762 director.console.tlsverifypeer.type = store_bool
    763 director.console.tlsverifypeer.required = false
    764 director.console.tlsverifypeer.def =  true
    765 director.console.tlscacertificatefile.ref =  0
    766 director.console.tlscacertificatefile.type = path
    767 director.console.tlscacertificatefile.required = false
    768 director.console.tlscacertificatefile.def =  0
    769 director.console.tlscacertificatedir.ref =  0
    770 director.console.tlscacertificatedir.type = path
    771 director.console.tlscacertificatedir.required = false
    772 director.console.tlscacertificatedir.def =  0
    773 director.console.tlscertificate.ref =  0
    774 director.console.tlscertificate.type = path
    775 director.console.tlscertificate.required = false
    776 director.console.tlscertificate.def =  0
    777 director.console.tlskey.ref =  0
    778 director.console.tlskey.type = path
    779 director.console.tlskey.required = false
    780 director.console.tlskey.def =  0
    781 director.console.tlsdhfile.ref =  0
    782 director.console.tlsdhfile.type = path
    783 director.console.tlsdhfile.required = false
    784 director.console.tlsdhfile.def =  0
    785 director.console.tlsallowedcn.ref =  0
    786 director.console.tlsallowedcn.type = store_alist_str
    787 director.console.tlsallowedcn.required = false
    788 director.console.tlsallowedcn.def =  0
    789 director.client.name.ref =  0
    790 director.client.name.type = String
    791 director.client.name.required = false
    792 director.client.name.def =  0
    793 director.client.description.ref =  0
    794 director.client.description.type = String
    795 director.client.description.required = false
    796 director.client.description.def =  0
    797 director.client.address.ref =   0
    798 director.client.address.type = String
    799 director.client.address.required = false
    800 director.client.address.def =  0
    801 director.client.fdaddress.ref =   0
    802 director.client.fdaddress.type = String
    803 director.client.fdaddress.required = false
    804 director.client.fdaddress.def =  0
    805 director.client.fdport.ref =    0
    806 director.client.fdport.type = int
    807 director.client.fdport.required = false
    808 director.client.fdport.def =  9102
    809 director.client.password.ref =  0
    810 director.client.password.type = Password
    811 director.client.password.required = false
    812 director.client.password.def =  0
    813 director.client.fdpassword.ref =  0
    814 director.client.fdpassword.type = Password
    815 director.client.fdpassword.required = false
    816 director.client.fdpassword.def =  0
    817 director.client.catalog.ref =   R_CATALOG
    818 director.client.catalog.type = Resource
    819 director.client.catalog.required = false
    820 director.client.catalog.def =  0
    821 director.client.fileretention.ref =  0
    822 director.client.fileretention.type = Date
    823 director.client.fileretention.required = false
    824 director.client.fileretention.def =  60*60*24*60
    825 director.client.jobretention.ref =   0
    826 director.client.jobretention.type = Date
    827 director.client.jobretention.required = false
    828 director.client.jobretention.def =  60*60*24*180
    829 director.client.heartbeatinterval.ref =  0
    830 director.client.heartbeatinterval.type = Date
    831 director.client.heartbeatinterval.required = false
    832 director.client.heartbeatinterval.def =  0
    833 director.client.autoprune.ref =  0
    834 director.client.autoprune.type = store_bool
    835 director.client.autoprune.required = false
    836 director.client.autoprune.def =  true
    837 director.client.maximumconcurrentjobs.ref =  0
    838 director.client.maximumconcurrentjobs.type = int
    839 director.client.maximumconcurrentjobs.required = false
    840 director.client.maximumconcurrentjobs.def =  1
    841 director.client.tlsauthenticate.ref =  0
    842 director.client.tlsauthenticate.type = store_bool
    843 director.client.tlsauthenticate.required = false
    844 director.client.tlsauthenticate.def =  0
    845 director.client.tlsenable.ref =  0
    846 director.client.tlsenable.type = store_bool
    847 director.client.tlsenable.required = false
    848 director.client.tlsenable.def =  0
    849 director.client.tlsrequire.ref =  0
    850 director.client.tlsrequire.type = store_bool
    851 director.client.tlsrequire.required = false
    852 director.client.tlsrequire.def =  0
    853 director.client.tlscacertificatefile.ref =  0
    854 director.client.tlscacertificatefile.type = path
    855 director.client.tlscacertificatefile.required = false
    856 director.client.tlscacertificatefile.def =  0
    857 director.client.tlscacertificatedir.ref =  0
    858 director.client.tlscacertificatedir.type = path
    859 director.client.tlscacertificatedir.required = false
    860 director.client.tlscacertificatedir.def =  0
    861 director.client.tlscertificate.ref =  0
    862 director.client.tlscertificate.type = path
    863 director.client.tlscertificate.required = false
    864 director.client.tlscertificate.def =  0
    865 director.client.tlskey.ref =  0
    866 director.client.tlskey.type = path
    867 director.client.tlskey.required = false
    868 director.client.tlskey.def =  0
    869 director.client.tlsallowedcn.ref =  0
    870 director.client.tlsallowedcn.type = store_alist_str
    871 director.client.tlsallowedcn.required = false
    872 director.client.tlsallowedcn.def =  0
    873 director.storagedaemon.name.ref =    0
    874 director.storagedaemon.name.type = String
    875 director.storagedaemon.name.required = false
    876 director.storagedaemon.name.def =  0
    877 director.storagedaemon.description.ref =    0
    878 director.storagedaemon.description.type = String
    879 director.storagedaemon.description.required = false
    880 director.storagedaemon.description.def =  0
    881 director.storagedaemon.sdport.ref =      0
    882 director.storagedaemon.sdport.type = int
    883 director.storagedaemon.sdport.required = false
    884 director.storagedaemon.sdport.def =  9103
    885 director.storagedaemon.address.ref =     0
    886 director.storagedaemon.address.type = String
    887 director.storagedaemon.address.required = false
    888 director.storagedaemon.address.def =  0
    889 director.storagedaemon.sdaddress.ref =     0
    890 director.storagedaemon.sdaddress.type = String
    891 director.storagedaemon.sdaddress.required = false
    892 director.storagedaemon.sdaddress.def =  0
    893 director.storagedaemon.password.ref =    0
    894 director.storagedaemon.password.type = Password
    895 director.storagedaemon.password.required = false
    896 director.storagedaemon.password.def =  0
    897 director.storagedaemon.sdpassword.ref =    0
    898 director.storagedaemon.sdpassword.type = Password
    899 director.storagedaemon.sdpassword.required = false
    900 director.storagedaemon.sdpassword.def =  0
    901 director.storagedaemon.device.ref =      R_DEVICE
    902 director.storagedaemon.device.type = store_device
    903 director.storagedaemon.device.required = false
    904 director.storagedaemon.device.def =  0
    905 director.storagedaemon.mediatype.ref =  0
    906 director.storagedaemon.mediatype.type = String
    907 director.storagedaemon.mediatype.required = false
    908 director.storagedaemon.mediatype.def =  0
    909 director.storagedaemon.autochanger.ref =  0
    910 director.storagedaemon.autochanger.type = store_bool
    911 director.storagedaemon.autochanger.required = false
    912 director.storagedaemon.autochanger.def =  0
    913 director.storagedaemon.enabled.ref =      0
    914 director.storagedaemon.enabled.type = store_bool
    915 director.storagedaemon.enabled.required = false
    916 director.storagedaemon.enabled.def =  true
    917 director.storagedaemon.allowcompression.ref =  0
    918 director.storagedaemon.allowcompression.type = store_bool
    919 director.storagedaemon.allowcompression.required = false
    920 director.storagedaemon.allowcompression.def =  true
    921 director.storagedaemon.heartbeatinterval.ref =  0
    922 director.storagedaemon.heartbeatinterval.type = Date
    923 director.storagedaemon.heartbeatinterval.required = false
    924 director.storagedaemon.heartbeatinterval.def =  0
    925 director.storagedaemon.maximumconcurrentjobs.ref =  0
    926 director.storagedaemon.maximumconcurrentjobs.type = int
    927 director.storagedaemon.maximumconcurrentjobs.required = false
    928 director.storagedaemon.maximumconcurrentjobs.def =  1
    929 director.storagedaemon.tlsauthenticate.ref =  0
    930 director.storagedaemon.tlsauthenticate.type = store_bool
    931 director.storagedaemon.tlsauthenticate.required = false
    932 director.storagedaemon.tlsauthenticate.def =  0
    933 director.storagedaemon.tlsenable.ref =  0
    934 director.storagedaemon.tlsenable.type = store_bool
    935 director.storagedaemon.tlsenable.required = false
    936 director.storagedaemon.tlsenable.def =  0
    937 director.storagedaemon.tlsrequire.ref =  0
    938 director.storagedaemon.tlsrequire.type = store_bool
    939 director.storagedaemon.tlsrequire.required = false
    940 director.storagedaemon.tlsrequire.def =  0
    941 director.storagedaemon.tlscacertificatefile.ref =  0
    942 director.storagedaemon.tlscacertificatefile.type = path
    943 director.storagedaemon.tlscacertificatefile.required = false
    944 director.storagedaemon.tlscacertificatefile.def =  0
    945 director.storagedaemon.tlscacertificatedir.ref =  0
    946 director.storagedaemon.tlscacertificatedir.type = path
    947 director.storagedaemon.tlscacertificatedir.required = false
    948 director.storagedaemon.tlscacertificatedir.def =  0
    949 director.storagedaemon.tlscertificate.ref =  0
    950 director.storagedaemon.tlscertificate.type = path
    951 director.storagedaemon.tlscertificate.required = false
    952 director.storagedaemon.tlscertificate.def =  0
    953 director.storagedaemon.tlskey.ref =  0
    954 director.storagedaemon.tlskey.type = path
    955 director.storagedaemon.tlskey.required = false
    956 director.storagedaemon.tlskey.def =  0
    957 director.catalog.name.ref =     0
    958 director.catalog.name.type = String
    959 director.catalog.name.required = false
    960 director.catalog.name.def =  0
    961 director.catalog.description.ref =     0
    962 director.catalog.description.type = String
    963 director.catalog.description.required = false
    964 director.catalog.description.def =  0
    965 director.catalog.address.ref =   0
    966 director.catalog.address.type = String
    967 director.catalog.address.required = false
    968 director.catalog.address.def =  0
    969 director.catalog.dbaddress.ref =   0
    970 director.catalog.dbaddress.type = String
    971 director.catalog.dbaddress.required = false
    972 director.catalog.dbaddress.def =  0
    973 director.catalog.dbport.ref =       0
    974 director.catalog.dbport.type = int
    975 director.catalog.dbport.required = false
    976 director.catalog.dbport.def =  0
    977 director.catalog.password.ref =  0
    978 director.catalog.password.type = String
    979 director.catalog.password.required = false
    980 director.catalog.password.def =  0
    981 director.catalog.dbpassword.ref =  0
    982 director.catalog.dbpassword.type = String
    983 director.catalog.dbpassword.required = false
    984 director.catalog.dbpassword.def =  0
    985 director.catalog.dbuser.ref =      0
    986 director.catalog.dbuser.type = String
    987 director.catalog.dbuser.required = false
    988 director.catalog.dbuser.def =  0
    989 director.catalog.user.ref =      0
    990 director.catalog.user.type = String
    991 director.catalog.user.required = false
    992 director.catalog.user.def =  0
    993 director.catalog.dbname.ref =      0
    994 director.catalog.dbname.type = String
    995 director.catalog.dbname.required = false
    996 director.catalog.dbname.def =  0
    997 director.catalog.dbdriver.ref =    0
    998 director.catalog.dbdriver.type = String
    999 director.catalog.dbdriver.required = false
    1000 director.catalog.dbdriver.def =  0
    1001 director.catalog.dbsocket.ref =    0
    1002 director.catalog.dbsocket.type = String
    1003 director.catalog.dbsocket.required = false
    1004 director.catalog.dbsocket.def =  0
    1005 director.catalog.multipleconnections.ref =  0
    1006 director.catalog.multipleconnections.type = boolean
    1007 director.catalog.multipleconnections.required = false
    1008 director.catalog.multipleconnections.def =  0
    1009 director.fileset.name.ref =  0
    1010 director.fileset.name.type = String
    1011 director.fileset.name.required = false
    1012 director.fileset.name.def =  0
    1013 director.fileset.description.ref =  0
    1014 director.fileset.description.type = String
    1015 director.fileset.description.required = false
    1016 director.fileset.description.def =  0
    1017 director.fileset.include.ref =                    0
    1018 director.fileset.include.type = store_inc
    1019 director.fileset.include.required = false
    1020 director.fileset.include.def =  0
    1021 director.fileset.exclude.ref =                    1
    1022 director.fileset.exclude.type = store_inc
    1023 director.fileset.exclude.required = false
    1024 director.fileset.exclude.def =  0
    1025 director.fileset.ignorefilesetchanges.ref =  0
    1026 director.fileset.ignorefilesetchanges.type = store_bool
    1027 director.fileset.ignorefilesetchanges.required = false
    1028 director.fileset.ignorefilesetchanges.def =  false
    1029 director.fileset.enablevss.ref =  0
    1030 director.fileset.enablevss.type = store_bool
    1031 director.fileset.enablevss.required = false
    1032 director.fileset.enablevss.def =  true
    1033 director.schedule.name.ref =  0
    1034 director.schedule.name.type = String
    1035 director.schedule.name.required = false
    1036 director.schedule.name.def =  0
    1037 director.schedule.description.ref =  0
    1038 director.schedule.description.type = String
    1039 director.schedule.description.required = false
    1040 director.schedule.description.def =  0
    1041 director.schedule.run.ref =       0
    1042 director.schedule.run.type = store_run
    1043 director.schedule.run.required = false
    1044 director.schedule.run.def =  0
    1045 director.pool.name.ref =       0
    1046 director.pool.name.type = String
    1047 director.pool.name.required = false
    1048 director.pool.name.def =  0
    1049 director.pool.description.ref =       0
    1050 director.pool.description.type = String
    1051 director.pool.description.required = false
    1052 director.pool.description.def =      0
    1053 director.pool.pooltype.ref =      0
    1054 director.pool.pooltype.type = String
    1055 director.pool.pooltype.required = false
    1056 director.pool.pooltype.def =  0
    1057 director.pool.labelformat.ref =   0
    1058 director.pool.labelformat.type = String
    1059 director.pool.labelformat.required = false
    1060 director.pool.labelformat.def =      0
    1061 director.pool.cleaningprefix.ref =  0
    1062 director.pool.cleaningprefix.type = String
    1063 director.pool.cleaningprefix.required = false
    1064 director.pool.cleaningprefix.def =    0
    1065 director.pool.usecatalog.ref =     0
    1066 director.pool.usecatalog.type = store_bool
    1067 director.pool.usecatalog.required = false
    1068 director.pool.usecatalog.def =  true
    1069 director.pool.usevolumeonce.ref =  0
    1070 director.pool.usevolumeonce.type = store_bool
    1071 director.pool.usevolumeonce.required = false
    1072 director.pool.usevolumeonce.def =    0
    1073 director.pool.purgeoldestvolume.ref =  0
    1074 director.pool.purgeoldestvolume.type = store_bool
    1075 director.pool.purgeoldestvolume.required = false
    1076 director.pool.purgeoldestvolume.def =  0
    1077 director.pool.actiononpurge.ref =  0
    1078 director.pool.actiononpurge.type = store_actiononpurge
    1079 director.pool.actiononpurge.required = false
    1080 director.pool.actiononpurge.def =  0
    1081 director.pool.recycleoldestvolume.ref =  0
    1082 director.pool.recycleoldestvolume.type = store_bool
    1083 director.pool.recycleoldestvolume.required = false
    1084 director.pool.recycleoldestvolume.def =  0
    1085 director.pool.recyclecurrentvolume.ref =  0
    1086 director.pool.recyclecurrentvolume.type = store_bool
    1087 director.pool.recyclecurrentvolume.required = false
    1088 director.pool.recyclecurrentvolume.def =  0
    1089 director.pool.maximumvolumes.ref =    0
    1090 director.pool.maximumvolumes.type = int
    1091 director.pool.maximumvolumes.required = false
    1092 director.pool.maximumvolumes.def =         0
    1093 director.pool.maximumvolumejobs.ref =     0
    1094 director.pool.maximumvolumejobs.type = int
    1095 director.pool.maximumvolumejobs.required = false
    1096 director.pool.maximumvolumejobs.def =        0
    1097 director.pool.maximumvolumefiles.ref =    0
    1098 director.pool.maximumvolumefiles.type = int
    1099 director.pool.maximumvolumefiles.required = false
    1100 director.pool.maximumvolumefiles.def =        0
    1101 director.pool.maximumvolumebytes.ref =    0
    1102 director.pool.maximumvolumebytes.type = store_size64
    1103 director.pool.maximumvolumebytes.required = false
    1104 director.pool.maximumvolumebytes.def =        0
    1105 director.pool.catalogfiles.ref =   0
    1106 director.pool.catalogfiles.type = store_bool
    1107 director.pool.catalogfiles.required = false
    1108 director.pool.catalogfiles.def =  true
    1109 director.pool.volumeretention.ref =    0
    1110 director.pool.volumeretention.type = Date
    1111 director.pool.volumeretention.required = false
    1112 director.pool.volumeretention.def =  60*60*24*365
    1113 director.pool.volumeuseduration.ref =  0
    1114 director.pool.volumeuseduration.type = Date
    1115 director.pool.volumeuseduration.required = false
    1116 director.pool.volumeuseduration.def =  0
    1117 director.pool.migrationtime.ref =  0
    1118 director.pool.migrationtime.type = Date
    1119 director.pool.migrationtime.required = false
    1120 director.pool.migrationtime.def =  0
    1121 director.pool.migrationhighbytes.ref =  0
    1122 director.pool.migrationhighbytes.type = store_size64
    1123 director.pool.migrationhighbytes.required = false
    1124 director.pool.migrationhighbytes.def =  0
    1125 director.pool.migrationlowbytes.ref =  0
    1126 director.pool.migrationlowbytes.type = store_size64
    1127 director.pool.migrationlowbytes.required = false
    1128 director.pool.migrationlowbytes.def =  0
    1129 director.pool.nextpool.ref =  R_POOL
    1130 director.pool.nextpool.type = Resource
    1131 director.pool.nextpool.required = false
    1132 director.pool.nextpool.def =  0
    1133 director.pool.storage.ref =   R_STORAGE
    1134 director.pool.storage.type = store_alist_res
    1135 director.pool.storage.required = false
    1136 director.pool.storage.def =  0
    1137 director.pool.autoprune.ref =  0
    1138 director.pool.autoprune.type = store_bool
    1139 director.pool.autoprune.required = false
    1140 director.pool.autoprune.def =  true
    1141 director.pool.recycle.ref =    0
    1142 director.pool.recycle.type = store_bool
    1143 director.pool.recycle.required = false
    1144 director.pool.recycle.def =  true
    1145 director.pool.recyclepool.ref =  R_POOL
    1146 director.pool.recyclepool.type = Resource
    1147 director.pool.recyclepool.required = false
    1148 director.pool.recyclepool.def =  0
    1149 director.pool.scratchpool.ref =  R_POOL
    1150 director.pool.scratchpool.type = Resource
    1151 director.pool.scratchpool.required = false
    1152 director.pool.scratchpool.def =  0
    1153 director.pool.copypool.ref =  R_POOL
    1154 director.pool.copypool.type = store_alist_res
    1155 director.pool.copypool.required = false
    1156 director.pool.copypool.def =  0
    1157 director.pool.catalog.ref =  R_CATALOG
    1158 director.pool.catalog.type = Resource
    1159 director.pool.catalog.required = false
    1160 director.pool.catalog.def =  0
    1161 director.pool.fileretention.ref =  0
    1162 director.pool.fileretention.type = Date
    1163 director.pool.fileretention.required = false
    1164 director.pool.fileretention.def =  0
    1165 director.pool.jobretention.ref =   0
    1166 director.pool.jobretention.type = Date
    1167 director.pool.jobretention.required = false
    1168 director.pool.jobretention.def =  0
    1169 director.counter.name.ref =         0
    1170 director.counter.name.type = String
    1171 director.counter.name.required = false
    1172 director.counter.name.def =  0
    1173 director.counter.description.ref =         0
    1174 director.counter.description.type = String
    1175 director.counter.description.required = false
    1176 director.counter.description.def =      0
    1177 director.counter.minimum.ref =         0
    1178 director.counter.minimum.type = store_int32
    1179 director.counter.minimum.required = false
    1180 director.counter.minimum.def =  0
    1181 director.counter.maximum.ref =         0
    1182 director.counter.maximum.type = int
    1183 director.counter.maximum.required = false
    1184 director.counter.maximum.def =  INT32_MAX
    1185 director.counter.wrapcounter.ref =      R_COUNTER
    1186 director.counter.wrapcounter.type = Resource
    1187 director.counter.wrapcounter.required = false
    1188 director.counter.wrapcounter.def =  0
    1189 director.counter.catalog.ref =          R_CATALOG
    1190 director.counter.catalog.type = Resource
    1191 director.counter.catalog.required = false
    1192 director.counter.catalog.def =  0
    1193 director.runscript.runsonsuccess.ref = 0
    1194 director.runscript.runsonsuccess.type = store_runscript_bool
    1195 director.runscript.runsonsuccess.required = false
    1196 director.runscript.runsonsuccess.def =  0
    1197 director.runscript.runsonfailure.ref = 0
    1198 director.runscript.runsonfailure.type = store_runscript_bool
    1199 director.runscript.runsonfailure.required = false
    1200 director.runscript.runsonfailure.def =  0
    1201 director.runscript.failjobonerror.ref = 0
    1202 director.runscript.failjobonerror.type = store_runscript_bool
    1203 director.runscript.failjobonerror.required = false
    1204 director.runscript.failjobonerror.def =  0
    1205 director.runscript.abortjobonerror.ref = 0
    1206 director.runscript.abortjobonerror.type = store_runscript_bool
    1207 director.runscript.abortjobonerror.required = false
    1208 director.runscript.abortjobonerror.def =  0
    1209 director.runscript.runswhen.ref =       0
    1210 director.runscript.runswhen.type = store_runscript_when
    1211 director.runscript.runswhen.required = false
    1212 director.runscript.runswhen.def =  0
Note: See TracChangeset for help on using the changeset viewer.