e656a55574c74dba2d377cd397bf5f89b7cd3981
[aaf/authz.git] / auth / auth-cass / src / main / java / org / onap / aaf / auth / dao / cass / NsType.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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
22 package org.onap.aaf.auth.dao.cass;
23
24 /**
25  * Defines the Type Codes in the NS Table.
26  * @author Jonathan
27  *
28  */
29 public enum NsType {
30         UNKNOWN (-1),
31         DOT (0),
32         ROOT (1), 
33         COMPANY (2), 
34         APP (3), 
35         STACKED_APP (10), 
36         STACK (11);
37         
38         public final int type;
39         private NsType(int t) {
40             type = t;
41         }
42         /**
43          * This is not the Ordinal, but the Type that is stored in NS Tables
44          * 
45          * @param t
46          * @return
47          */
48         public static NsType fromType(int t) {
49             for (NsType nst : values()) {
50                 if (t==nst.type) {
51                     return nst;
52                 }
53             }
54             return UNKNOWN;
55         }
56         
57         /**
58          * Use this one rather than "valueOf" to avoid Exception
59          * @param s
60          * @return
61          */
62         public static NsType fromString(String s) {
63             if (s!=null) {
64                 for (NsType nst : values()) {
65                     if (nst.name().equals(s)) {
66                         return nst;
67                     }
68                 }
69             }
70             return UNKNOWN;
71         }
72
73         
74 }