comparison JavaSDK/be/uclouvain/orthanc/HttpMethod.java @ 0:3ecef5782f2c

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Oct 2023 17:59:44 +0200
parents
children 26c08ff926a3
comparison
equal deleted inserted replaced
-1:000000000000 0:3ecef5782f2c
1 package be.uclouvain.orthanc;
2
3 /**
4 * SPDX-FileCopyrightText: 2023 Sebastien Jodogne, UCLouvain, Belgium
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7
8 /**
9 * Java plugin for Orthanc
10 * Copyright (C) 2023 Sebastien Jodogne, UCLouvain, Belgium
11 *
12 * This program is free software: you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation, either version 3 of the
15 * License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see http://www.gnu.org/licenses/.
24 **/
25
26
27 /**
28 * The various HTTP methods for a REST call.
29 **/
30 public enum HttpMethod {
31 /**
32 * GET request
33 **/
34 GET(1),
35 /**
36 * POST request
37 **/
38 POST(2),
39 /**
40 * PUT request
41 **/
42 PUT(3),
43 /**
44 * DELETE request
45 **/
46 DELETE(4);
47
48 private int value;
49
50 private HttpMethod(int value) {
51 this.value = value;
52 }
53
54 /**
55 * Return the enumeration value that corresponds to an integer value of interest.
56 * @param value The integer value.
57 * @return The enumeration value.
58 **/
59 protected static HttpMethod getInstance(int value) {
60 if (value == 1) {
61 return GET;
62 }
63 if (value == 2) {
64 return POST;
65 }
66 if (value == 3) {
67 return PUT;
68 }
69 if (value == 4) {
70 return DELETE;
71 }
72
73 throw new IllegalArgumentException("Value out of range for enumeration HttpMethod: " + value);
74 }
75
76 /**
77 * Get the integer value corresponding to this enumeration value.
78 * @return The integer value.
79 **/
80 public int getValue() {
81 return value;
82 }
83 }