My favorites
▼
|
Sign in
jmesa
Table Rendering API
Project Home
Downloads
Wiki
Issues
Source
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
328
attachment: PreferencesFactory.java
(1.5 KB)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Copyright 2004 original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jmesa.core.preference;
import org.jmesa.web.HttpServletRequestSpringWebContext;
import org.jmesa.web.SpringWebContext;
import org.jmesa.web.WebContext;
/**
* A factory to create different Preferences.
*
* @since 2.3
* @author Jeff Johnston
*/
public class PreferencesFactory {
private static final String JMESA_PREFERENCES_LOCATION = "jmesaPreferencesLocation";
public static Preferences getPreferences(WebContext webContext) {
String jmesaPreferencesLocation = (String) webContext.getApplicationInitParameter(JMESA_PREFERENCES_LOCATION);
if(SpringWebContext.class.isAssignableFrom(webContext.getClass())) {
return new SpringThemePropertiesPreferences((HttpServletRequestSpringWebContext) webContext);
}
return new PropertiesPreferences(jmesaPreferencesLocation, webContext);
}
}
Powered by
Google Project Hosting