Post Init Service Starter
[aaf/authz.git] / misc / xgen / src / main / java / org / onap / aaf / misc / xgen / html / Imports.java
1 /**\r
2  * ============LICENSE_START====================================================\r
3  * org.onap.aaf\r
4  * ===========================================================================\r
5  * Copyright (c) 2018 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  */\r
21 \r
22 package org.onap.aaf.misc.xgen.html;\r
23 \r
24 import java.util.ArrayList;\r
25 import java.util.List;\r
26 \r
27 public class Imports implements Thematic{\r
28     List<String> css;\r
29     List<String> js;\r
30     public final int backdots;\r
31     private String theme;\r
32     \r
33     public Imports(int backdots) {\r
34         css = new ArrayList<>();\r
35         js = new ArrayList<>();\r
36         this.backdots = backdots;\r
37         theme = "";\r
38     }\r
39     \r
40     public Imports css(String str) {\r
41         css.add(str);\r
42         return this;\r
43     }\r
44     \r
45     public Imports js(String str) {\r
46         js.add(str);\r
47         return this;\r
48     }\r
49 \r
50     public Imports theme(String str) {\r
51         theme = str==null?"":str;\r
52         return this;\r
53     }\r
54 \r
55     /**\r
56      * Pass in a possible Theme.  If it is "" or null, it will resolve to default Theme set in Imports\r
57      * \r
58      * @param theTheme\r
59      * @return\r
60      */\r
61     @Override\r
62     public String themePath(String theTheme) {\r
63         StringBuilder src = dots(new StringBuilder());\r
64         if (theTheme==null||theTheme.length()==0) {\r
65             src.append(theme);\r
66             if (theme.length()>0)src.append('/');\r
67         } else {\r
68             src.append(theTheme);\r
69             src.append('/');\r
70         }\r
71 \r
72         return src.toString();\r
73     }\r
74     \r
75     /**\r
76      * Pass in a possible Theme.  If it is "" or null, it will resolve to default Theme set in Imports\r
77      * \r
78      * @param theTheme\r
79      * @return\r
80      */\r
81     @Override\r
82     public String themeResolve(String theTheme) {\r
83         return (theTheme==null||theTheme.length()==0)\r
84             ?theme\r
85             :theTheme;\r
86     }\r
87 \r
88     public StringBuilder dots(StringBuilder src) {\r
89         for (int i=0;i<backdots;++i) {\r
90             src.append("../");\r
91         }\r
92         return src;\r
93     }\r
94     \r
95 };\r
96 \r