home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="ISO-8859-1"?>
-
- <BACKUP_CONF>
- <!--
-
- This file is used to configure WebNMS backup.
- You can add your own Java based backup code which will
- be run when specified.
-
- The syntax is
- <BACKUP
- className="Backup_Classname"
- paramForTime="value" />
-
- where value is the time at which the class needs to be executed.
-
- The time at wich backup is to be run can be specified as follows.
-
- 1. DAILY
- Just "DAILY" has to be specified after the file name.
- Eg1:
-
- <BACKUP
- className="jdbc.BackUpImpl"
- DAILY="true" />
-
- 2. WEEKLY
- Just "WEEKLY" has to be specified after the file name.
- Eg2:
-
- <BACKUP
- className="jdbc.BackUpImpl"
- WEEKLY="true" />
-
- 3. HOUR and DAY_OF_THE_WEEK method
- HOUR has to be specified as a list, for eg: 2,5,22. It should be between 1 and 24.
- DAY_OF_THE_WEEK has to be given as a list, for eg: MON ,TUE . Only the first three letters
- should be given and in capitals.
- A value of "*" means ALL.
- Eg3:
-
- <BACKUP
- className="jdbc.BackUpImpl"
- HOUR="3,7"
- DAY_OF_THE_WEEK="MON,WED" />
-
- 4. HOUR and DAY_OF_THE_MONTH method
- HOUR has to be specified as a list, for eg: 2,5,22. It should be between 1 and 24.
- DAY_OF_THE_MONTH has to be given as a range(starting from 1 to a maximum of 31)
- A value of "*" means ALL
- Eg5: jdbc.BackUpImpl HOUR 3,7 DAY_OF_THE_MONTH 10-20
-
- <BACKUP
- className="jdbc.BackUpImpl"
- HOUR="3,7"
- DAY_OF_THE_MONTH="10-20" />
-
- Any error made while giving the times will let it default it "WEEKLY".
- <BACKUP
- className="jdbc.BackUpImpl"
- DAILY="true" />
-
- -->
- </BACKUP_CONF>
-
-