1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 package org.apache.myfaces.tobago.config;
21
22 import org.apache.myfaces.tobago.application.ProjectStage;
23 import org.apache.myfaces.tobago.context.Theme;
24
25 import javax.faces.context.FacesContext;
26 import javax.servlet.ServletContext;
27 import java.util.List;
28
29 public abstract class TobagoConfig {
30
31 public static final String TOBAGO_CONFIG = "org.apache.myfaces.tobago.config.TobagoConfig";
32
33 public static TobagoConfig getInstance(FacesContext facesContext) {
34 return (TobagoConfig) facesContext.getExternalContext().getApplicationMap().get(TOBAGO_CONFIG);
35 }
36
37 public static TobagoConfig getInstance(ServletContext servletContext) {
38 return (TobagoConfig) servletContext.getAttribute(TOBAGO_CONFIG);
39 }
40
41 public abstract Theme getTheme(String name);
42
43 public abstract List<Theme> getSupportedThemes();
44
45 /*
46 // todo: should this be part of the api?
47 public abstract void addResourceDir(String resourceDir);
48 */
49
50 /*
51 // todo: should this be part of the api?
52 public abstract List<String> getResourceDirs();
53 */
54
55 /**
56 * @deprecated since 1.5.0
57 */
58 @Deprecated
59 public abstract boolean isAjaxEnabled();
60
61 public abstract Theme getDefaultTheme();
62
63 /*
64 // todo: should this be part of the api?
65 public abstract RenderersConfig getRenderersConfig();
66 */
67
68 public abstract ProjectStage getProjectStage();
69
70 /*
71 // todo: should this be part of the api?
72 public abstract List<Theme> getThemeDefinitions();
73 */
74
75 public abstract boolean isCreateSessionSecret();
76
77 public abstract boolean isCheckSessionSecret();
78
79 public abstract boolean isPreventFrameAttacks();
80
81 public abstract List<String> getContentSecurityPolicy();
82
83 }