[DMAAP-BC] Consolidate bus controller repos
[dmaap/buscontroller.git] / dmaap-bc / src / main / java / org / onap / dmaap / dbcapi / model / FqtnType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
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 package org.onap.dmaap.dbcapi.model;
21
22 import java.util.HashMap;
23 import java.util.Map;
24
25 import javax.xml.bind.annotation.XmlRootElement;
26
27
28 @XmlRootElement
29 public enum FqtnType {
30         FQTN_NOT_SPECIFIED(0),
31         FQTN_LEGACY_FORMAT(1),
32         FQTN_PROJECTID_FORMAT(2),
33         FQTN_PROJECTID_VERSION_FORMAT(3);
34
35
36     private int value;
37     private static Map map = new HashMap<>();
38
39     private FqtnType(int value) {
40         this.value = value;
41     }
42
43     static {
44         for (FqtnType repType : FqtnType.values()) {
45             map.put(repType.value, repType);
46         }
47     }
48
49     public static FqtnType valueOf(int repType) {
50         return (FqtnType) map.get(repType);
51     }
52
53     public int getValue() {
54         return value;
55     }
56
57     static public FqtnType Validator( String input ){
58    
59                 FqtnType t;
60                 try {
61                         t = FqtnType.valueOf( input );
62                 } catch ( IllegalArgumentException e ) {
63                         t = FQTN_NOT_SPECIFIED;
64                 }
65                 return t;
66         }
67
68 }