2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.api;
23 import com.fasterxml.jackson.annotation.JsonCreator;
26 * Enumeration of PolicyConfigStatus that can be returned as a part of
27 * {@link org.onap.policy.api.PolicyConfig}.
31 public enum PolicyConfigStatus {
33 * Indicates that the Configuration has been successfully retrieved.
35 CONFIG_RETRIEVED("retrieved"),
37 * Indicates that there is no Configuration Retrieved from PolicyConfig.
39 CONFIG_NOT_FOUND("not_found"),
43 private PolicyConfigStatus(String name){
48 * Get the <code>PolicyConfigStatus</code> based on <code>String</code> representation of <code>PolicyConfig</code>
50 * @param configStatus the <code>String</code> Configuration Status
51 * @return the <code>PolicyConfigResponse</code> with the name matching <code>CONFIG_RETRIEVED</code> or <code>CONFIG_NOT_FOUND</code>
52 * if no match is found
54 public static PolicyConfigStatus getStatus(String configStatus) {
55 if("retrieved".equalsIgnoreCase(configStatus)) {
56 return CONFIG_RETRIEVED;
58 return CONFIG_NOT_FOUND;
63 * Returns the <code>String</code> name for this <code>PolicyConfigStatus</code>
65 * @return the <code>String</code> name for this <code>PolicyConfigStatus</code>
68 public String toString(){
72 public static PolicyConfigStatus create (String value) {
73 for(PolicyConfigStatus type: values()){
74 if(type.toString().equals(value) || type.equals(PolicyConfigStatus.valueOf(value))){
78 throw new IllegalArgumentException();