Mercurial > hg > orthanc-object-storage
annotate Common/StoragePlugin.h @ 206:afc642ccb99c
integration 2.4.0->mainline
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 26 Jun 2024 16:16:48 +0200 |
parents | 9c335e088f17 |
children |
rev | line source |
---|---|
84 | 1 /** |
200 | 2 * Cloud storage plugins for Orthanc |
145
3c7e0374f28e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
84
diff
changeset
|
3 * Copyright (C) 2018-2023 Osimis S.A., Belgium |
3c7e0374f28e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
84
diff
changeset
|
4 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
3c7e0374f28e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
84
diff
changeset
|
5 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
84 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 | |
25 static const char* const JOB_TYPE_MOVE_STORAGE = "MoveStorage"; | |
26 | |
27 static const char* const KEY_RESOURCES = "Resources"; | |
28 static const char* const KEY_TARGET_STORAGE = "TargetStorage"; | |
29 static const char* const KEY_INSTANCES = "Instances"; | |
30 static const char* const KEY_CONTENT = "Content"; | |
31 | |
32 static const char* const STORAGE_TYPE_FILE_SYSTEM = "file-system"; | |
33 static const char* const STORAGE_TYPE_OBJECT_STORAGE = "object-storage"; | |
34 |