48f5182bd534f8542234eae541e61a9da3990ee0
[policy/models.git] / models-interactions / model-impl / appc / src / main / java / org / onap / policy / appc / ResponseCode.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.appc;
23
24 import com.google.gson.annotations.SerializedName;
25
26 public enum ResponseCode {
27     ACCEPT(100), ERROR(200), REJECT(300), SUCCESS(400), FAILURE(500);
28
29     @SerializedName("Code")
30     private Integer code;
31
32     private ResponseCode(int code) {
33         this.code = code;
34     }
35
36     public int getValue() {
37         return this.code;
38     }
39
40     @Override
41     public String toString() {
42         return Integer.toString(this.code);
43     }
44
45     /**
46      * Convert an integer code to a ResponseCode.
47      * 
48      * @param code the integer code
49      * @return the ResponseCode
50      */
51     public static ResponseCode toResponseCode(int code) {
52         if (code == ACCEPT.code) {
53             return ACCEPT;
54         }
55         if (code == ERROR.code) {
56             return ERROR;
57         }
58         if (code == REJECT.code) {
59             return REJECT;
60         }
61         if (code == SUCCESS.code) {
62             return SUCCESS;
63         }
64         if (code == FAILURE.code) {
65             return FAILURE;
66         }
67         return null;
68     }
69 }