21e572879bb73e65edf3e0057804eefdcf4b9031
[aaf/authz.git] / authz-cass / src / main / java / org / onap / aaf / dao / aaf / cass / NsSplit.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.dao.aaf.cass;\r
24 \r
25 public class NsSplit {\r
26         public final String ns;\r
27         public final String name;\r
28         public final NsDAO.Data nsd;\r
29         \r
30         public NsSplit(NsDAO.Data nsd, String child) {\r
31                 this.nsd = nsd;\r
32                 if(child.startsWith(nsd.name)) {\r
33                         ns = nsd.name;\r
34                         int dot = ns.length();\r
35                         if(dot<child.length() && child.charAt(dot)=='.') {\r
36                         name = child.substring(dot+1);\r
37                         } else {\r
38                                 name="";\r
39                         }\r
40                 } else {\r
41                         name=null;\r
42                         ns = null;\r
43                 }\r
44         }\r
45         \r
46         public NsSplit(String ns, String name) {\r
47                 this.ns = ns;\r
48                 this.name = name;\r
49                 this.nsd = new NsDAO.Data();\r
50                 nsd.name = ns;\r
51                 int dot = ns.lastIndexOf('.');\r
52                 if(dot>=0) {\r
53                         nsd.parent = ns.substring(0, dot);\r
54                 } else {\r
55                         nsd.parent = ".";\r
56                 }\r
57         }\r
58 \r
59         public boolean isOK() {\r
60                 return ns!=null && name !=null;\r
61         }\r
62 }\r