[POLICY-122] Policy GUI Fixes
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / openecomp / policy / api / DeletePolicyCondition.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.openecomp.policy.api;
22
23 import com.fasterxml.jackson.annotation.JsonCreator;
24
25 /**
26  * Enumeration of the Policy Delete Condition that is used as a part of
27  * {@link org.openecomp.policy.api.DeletePolicyParameters}.
28  * 
29  * @version 0.1
30  */
31 public enum DeletePolicyCondition {
32         
33         /**
34          * Indicates a condition to only delete the current version of the policy. 
35          */
36         ONE("Current Version"),
37         
38         /**
39          * Indicates a condition to delete all versions of the policy.
40          */
41         ALL("All Versions");
42         private String name;
43
44         private DeletePolicyCondition(String name){
45                 this.name = name;
46         }
47
48         /**
49          * Returns the <code>String</code> format of delete condition for this Policy
50          * @return the <code>String</code> of the delete condition for this Policy
51          */
52         public String toString(){
53                 return this.name;
54         }
55
56         @JsonCreator
57     public static DeletePolicyCondition create (String value) {
58         for(DeletePolicyCondition type: values()){
59             if(type.toString().equals(value) || type.equals(DeletePolicyCondition.valueOf(value))){
60                 return type;
61             }
62         }
63         throw new IllegalArgumentException();
64     }
65 }