1 /*
2    BAREOS® - Backup Archiving REcovery Open Sourced
3 
4    Copyright (C) 2000-2012 Free Software Foundation Europe e.V.
5    Copyright (C) 2011-2012 Planets Communications B.V.
6    Copyright (C) 2013-2019 Bareos GmbH & Co. KG
7 
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12 
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    Affero General Public License for more details.
17 
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22 */
23 
24 #ifndef BAREOS_SRC_INCLUDE_JOB_LEVEL_H_
25 #define BAREOS_SRC_INCLUDE_JOB_LEVEL_H_
26 
27 enum JobLevelCode : char
28 {
29   L_FULL = 'F',         /**< Full backup */
30   L_INCREMENTAL = 'I',  /**< Since last backup */
31   L_DIFFERENTIAL = 'D', /**< Since last full backup */
32   L_SINCE = 'S',
33   L_VERIFY_CATALOG = 'C',           /**< Verify from catalog */
34   L_VERIFY_INIT = 'V',              /**< Verify save (init DB) */
35   L_VERIFY_VOLUME_TO_CATALOG = 'O', /**< Verify Volume to catalog entries \
36                                      */
37   L_VERIFY_DISK_TO_CATALOG = 'd',   /**< Verify Disk attributes to catalog */
38   L_VERIFY_DATA = 'A',              /**< Verify data on volume */
39   L_BASE = 'B',                     /**< Base level job */
40   L_NONE = ' ',                     /**< None, for Restore and Admin */
41   L_VIRTUAL_FULL = 'f'              /**< Virtual full backup */
42 };
43 
44 #endif  // BAREOS_SRC_INCLUDE_JOB_LEVEL_H_
45