move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-impl / appc / src / main / java / org / onap / policy / appc / ResponseValue.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 ResponseValue {
27     ACCEPT("ACCEPT"), ERROR("ERROR"), REJECT("REJECT"), SUCCESS("SUCCESS"), FAILURE("FAILURE");
28
29     @SerializedName("Value")
30     private String value;
31
32     private ResponseValue(String value) {
33         this.value = value;
34     }
35
36     @Override
37     public String toString() {
38         return this.value;
39     }
40
41     /**
42      * Convert a String value to a ResponseValue.
43      *
44      * @param value the String value
45      * @return the ResponseValue
46      */
47     public static ResponseValue toResponseValue(String value) {
48         if (value == null) {
49             return null;
50         }
51
52         if (value.equals(ACCEPT.toString())) {
53             return ACCEPT;
54         }
55         if (value.equals(ERROR.toString())) {
56             return ERROR;
57         }
58         if (value.equals(REJECT.toString())) {
59             return REJECT;
60         }
61         if (value.equals(SUCCESS.toString())) {
62             return SUCCESS;
63         }
64         if (value.equals(FAILURE.toString())) {
65             return FAILURE;
66         }
67
68         return null;
69     }
70
71 }