]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/protected/Common/Class/Errors.php
baculum: Add restore hardlinks support in api
[bacula/bacula] / gui / baculum / protected / Common / Class / Errors.php
index e4f5cff5734c5abf5cd6ff0118c4f109cc711d57..b0b7304f7c362000356c173d1ea36f0bcc4c3fe2 100644 (file)
@@ -85,20 +85,20 @@ class PoolError extends GenericError {
 class JobError extends GenericError {
        const ERROR_JOB_DOES_NOT_EXISTS = 50;
        const ERROR_INVALID_JOBLEVEL = 51;
-       const ERROR_FILESETID_DOES_NOT_EXISTS = 52;
-       const ERROR_CLIENTID_DOES_NOT_EXISTS = 53;
-       const ERROR_STORAGEID_DOES_NOT_EXISTS = 54;
-       const ERROR_POOLID_DOES_NOT_EXISTS = 55;
+       const ERROR_FILESET_DOES_NOT_EXISTS = 52;
+       const ERROR_CLIENT_DOES_NOT_EXISTS = 53;
+       const ERROR_STORAGE_DOES_NOT_EXISTS = 54;
+       const ERROR_POOL_DOES_NOT_EXISTS = 55;
        const ERROR_INVALID_RPATH = 56;
        const ERROR_INVALID_WHERE_OPTION = 57;
        const ERROR_INVALID_REPLACE_OPTION = 58;
 
        const MSG_ERROR_JOB_DOES_NOT_EXISTS = 'Job with inputted jobid does not exist.';
        const MSG_ERROR_INVALID_JOBLEVEL = 'Inputted job level is invalid.';
-       const MSG_ERROR_FILESETID_DOES_NOT_EXISTS = 'FileSet resource with inputted filesetid does not exist.';
-       const MSG_ERROR_CLIENTID_DOES_NOT_EXISTS = 'Client with inputted clientid does not exist.';
-       const MSG_ERROR_STORAGEID_DOES_NOT_EXISTS = 'Storage with inputted storageid does not exist.';
-       const MSG_ERROR_POOLID_DOES_NOT_EXISTS = 'Pool with inputted poolid does not exist.';
+       const MSG_ERROR_FILESET_DOES_NOT_EXISTS = 'FileSet resource does not exist.';
+       const MSG_ERROR_CLIENT_DOES_NOT_EXISTS = 'Client does not exist.';
+       const MSG_ERROR_STORAGE_DOES_NOT_EXISTS = 'Storage does not exist.';
+       const MSG_ERROR_POOL_DOES_NOT_EXISTS = 'Pool does not exist.';
        const MSG_ERROR_INVALID_RPATH = 'Inputted rpath for restore is invalid. Proper format is b2[0-9]+.';
        const MSG_ERROR_INVALID_WHERE_OPTION = 'Inputted "where" option is invalid.';
        const MSG_ERROR_INVALID_REPLACE_OPTION = 'Inputted "replace" option is invalid.';
@@ -111,13 +111,19 @@ class FileSetError extends GenericError {
 }
 
 class BVFSError extends GenericError {
-       const ERROR_JOB_DOES_NOT_EXISTS = 70;
+       const ERROR_INVALID_JOBID_LIST = 70;
        const ERROR_INVALID_RPATH = 71;
        const ERROR_INVALID_RESTORE_PATH = 72;
+       const ERROR_INVALID_FILEID_LIST = 73;
+       const ERROR_INVALID_FILEINDEX_LIST = 74;
+       const ERROR_INVALID_DIRID_LIST = 75;
 
-       const MSG_ERROR_JOB_DOES_NOT_EXISTS = 'Job with inputted jobid does not exist.';
+       const MSG_ERROR_INVALID_JOBID_LIST = 'Invalid jobid list.';
        const MSG_ERROR_INVALID_RPATH = 'Inputted path for restore is invalid. Proper format is b2[0-9]+.';
        const MSG_ERROR_INVALID_RESTORE_PATH = 'Inputted BVFS path param is invalid.';
+       const MSG_ERROR_INVALID_FILEID_LIST = 'Invalid fileid list.';
+       const MSG_ERROR_INVALID_FILEINDEX_LIST = 'Invalid file index list.';
+       const MSG_ERROR_INVALID_DIRID_LIST = 'Invalid dirid list.';
 }
 
 class JSONToolsError extends GenericError {