home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / ManageEngineWiFiManager.exe / Disk1 / data1.cab / SourceFiles / WiFiManager.exe / conf / BackUp.conf < prev    next >
Encoding:
Extensible Markup Language  |  2004-06-21  |  1.6 KB  |  66 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2.  
  3. <BACKUP_CONF>
  4.   <!--
  5.  
  6.     This file is used to configure WebNMS backup.
  7.     You can add your own Java based backup code which will
  8.     be run when specified.
  9.  
  10.     The syntax is
  11.     <BACKUP
  12.         className="Backup_Classname"
  13.         paramForTime="value" />
  14.  
  15.     where value is the time at which the class needs to be executed.
  16.  
  17.     The time at wich backup is to be run can be specified as follows.
  18.  
  19.     1. DAILY
  20.     Just "DAILY" has to be specified after the file name.
  21.     Eg1: 
  22.  
  23.     <BACKUP
  24.          className="jdbc.BackUpImpl"
  25.           DAILY="true" />
  26.  
  27.     2. WEEKLY
  28.     Just "WEEKLY" has to be specified after the file name.
  29.     Eg2: 
  30.  
  31.     <BACKUP
  32.          className="jdbc.BackUpImpl"
  33.           WEEKLY="true" />
  34.  
  35.     3. HOUR and DAY_OF_THE_WEEK method
  36.     HOUR has to be specified as a list, for eg: 2,5,22. It should be between 1 and 24.
  37.     DAY_OF_THE_WEEK has to be given as a list, for eg: MON ,TUE . Only the first three letters
  38.     should be given and in capitals.
  39.     A value of "*" means ALL.
  40.     Eg3: 
  41.  
  42.     <BACKUP
  43.          className="jdbc.BackUpImpl"
  44.           HOUR="3,7"
  45.          DAY_OF_THE_WEEK="MON,WED" />
  46.  
  47.     4. HOUR and DAY_OF_THE_MONTH method
  48.     HOUR has to be specified as a list, for eg: 2,5,22. It should be between 1 and 24.
  49.     DAY_OF_THE_MONTH has to be given as a range(starting from 1 to a maximum of 31)
  50.     A value of "*" means ALL
  51.     Eg5: jdbc.BackUpImpl HOUR 3,7 DAY_OF_THE_MONTH 10-20
  52.  
  53.     <BACKUP
  54.          className="jdbc.BackUpImpl"
  55.           HOUR="3,7"
  56.          DAY_OF_THE_MONTH="10-20" />
  57.  
  58.     Any error made while giving the times will let it default it "WEEKLY".
  59.   <BACKUP
  60.      className="jdbc.BackUpImpl"
  61.      DAILY="true" />
  62.  
  63. -->
  64. </BACKUP_CONF>
  65.  
  66.