Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerJobs/Operations/StorePeerOperation.h @ 5638:4535194cbb8a
document TLS 1.3 in SslMinimumProtocolVersion
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Wed, 22 May 2024 16:06:30 +0200 |
parents | 48b8dae6dc77 |
children | f7adfb22e20e |
rev | line source |
---|---|
2605 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
2605 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU General Public License as | |
10 * published by the Free Software Foundation, either version 3 of the | |
11 * 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 * General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
4205 | 25 #include "../../../../OrthancFramework/Sources/Compatibility.h" // For ORTHANC_OVERRIDE |
4045 | 26 #include "../../../../OrthancFramework/Sources/JobsEngine/Operations/IJobOperation.h" |
27 #include "../../../../OrthancFramework/Sources/WebServiceParameters.h" | |
2605 | 28 |
29 namespace Orthanc | |
30 { | |
31 class StorePeerOperation : public IJobOperation | |
32 { | |
33 private: | |
34 WebServiceParameters peer_; | |
35 | |
36 public: | |
4205 | 37 explicit StorePeerOperation(const WebServiceParameters& peer) : |
38 peer_(peer) | |
2605 | 39 { |
40 } | |
41 | |
4205 | 42 explicit StorePeerOperation(const Json::Value& serialized); |
2655 | 43 |
2659 | 44 const WebServiceParameters& GetPeer() const |
45 { | |
46 return peer_; | |
47 } | |
48 | |
2605 | 49 virtual void Apply(JobOperationValues& outputs, |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4205
diff
changeset
|
50 const IJobOperationValue& input) ORTHANC_OVERRIDE; |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
51 |
4205 | 52 virtual void Serialize(Json::Value& result) const ORTHANC_OVERRIDE; |
2605 | 53 }; |
54 } | |
55 |