17678b3f181ac9d26d60bb095d981c65cf118751
[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                 \r
35                 css = new ArrayList<>();\r
36                 js = new ArrayList<>();\r
37                 this.backdots = backdots;\r
38                 theme = "";\r
39         }\r
40         \r
41         public Imports css(String str) {\r
42                 css.add(str);\r
43                 return this;\r
44         }\r
45         \r
46         public Imports js(String str) {\r
47                 js.add(str);\r
48                 return this;\r
49         }\r
50 \r
51         public Imports theme(String str) {\r
52                 theme = str==null?"":str;\r
53                 return this;\r
54         }\r
55 \r
56         /**\r
57          * Pass in a possible Theme.  If it is "" or null, it will resolve to default Theme set in Imports\r
58          * \r
59          * @param theTheme\r
60          * @return\r
61          */\r
62         @Override\r
63         public String themePath(String theTheme) {\r
64                 StringBuilder src = dots(new StringBuilder());\r
65                 if(theTheme==null||theTheme.length()==0) {\r
66                         src.append(theme);\r
67                         if(theme.length()>0)src.append('/');\r
68                 } else {\r
69                         src.append(theTheme);\r
70                         src.append('/');\r
71                 }\r
72 \r
73                 return src.toString();\r
74         }\r
75         \r
76         /**\r
77          * Pass in a possible Theme.  If it is "" or null, it will resolve to default Theme set in Imports\r
78          * \r
79          * @param theTheme\r
80          * @return\r
81          */\r
82         @Override\r
83         public String themeResolve(String theTheme) {\r
84                 return (theTheme==null||theTheme.length()==0)\r
85                         ?theme\r
86                         :theTheme;\r
87         }\r
88 \r
89         public StringBuilder dots(StringBuilder src) {\r
90                 for(int i=0;i<backdots;++i) {\r
91                         src.append("../");\r
92                 }\r
93                 return src;\r
94         }\r
95         \r
96 };\r
97 \r