comparison OrthancServer/Plugins/Samples/MultitenantDicom/PluginEnumerations.h @ 5273:7cb1b851f5c8

Added a sample plugin bringing multitenant DICOM support through labels
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 14 Apr 2023 11:49:24 +0200
parents
children a8385880902f
comparison
equal deleted inserted replaced
5272:a45e8b6115f6 5273:7cb1b851f5c8
1 /**
2 * Orthanc - A Lightweight, RESTful DICOM Store
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium
6 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
7 *
8 * This program is free software: you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation, either version 3 of
11 * the License, or (at your option) any later version.
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 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.
21 **/
22
23
24 #pragma once
25
26
27 enum LabelsConstraint
28 {
29 LabelsConstraint_All,
30 LabelsConstraint_Any,
31 LabelsConstraint_None
32 };
33
34
35 #define KEY_AET "AET"
36 #define KEY_ALL "All"
37 #define KEY_ANY "Any"
38 #define KEY_LABELS "Labels"
39 #define KEY_LABELS_CONSTRAINT "LabelsConstraint"
40 #define KEY_LABELS_STORE_LEVELS "LabelsStoreLevels"
41 #define KEY_MAIN_DICOM_TAGS "MainDicomTags"
42 #define KEY_MULTITENANT_DICOM "MultitenantDicom"
43 #define KEY_NONE "None"
44 #define KEY_PATIENT_MAIN_DICOM_TAGS "PatientMainDicomTags"
45 #define KEY_QUERY "Query"
46 #define KEY_SERVERS "Servers"
47 #define KEY_STRICT_AET_COMPARISON "StrictAetComparison"
48 #define KEY_SYNCHRONOUS_C_MOVE "SynchronousCMove"