net.jawr.web.config.jmx.JawrConfigManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jawr-core Show documentation
Show all versions of jawr-core Show documentation
Javascript/CSS bundling and compressing tool for java web apps.
By using jawr resources are automatically bundled together and optionally minified and gzipped.
Jawr provides tag libraries to reference a generated bundle either by id or by using the name of any of its members.
/**
* Copyright 2009 Ibrahim Chaehoi
*
* 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 net.jawr.web.config.jmx;
import java.util.Properties;
import net.jawr.web.config.JawrConfig;
import net.jawr.web.servlet.JawrRequestHandler;
/**
* This class defines the MBean which manage the Jawr configuration for a servlet.
*
* @author Ibrahim Chaehoi
*/
public class JawrConfigManager implements JawrConfigManagerMBean {
/** The request handler */
private JawrRequestHandler requestHandler;
/** The configuration properties */
private Properties configProperties;
/**
* Constructor
*
* @param requestHandler the request handler
* @param properties the properties
*/
public JawrConfigManager(JawrRequestHandler requestHandler, Properties properties) {
this.requestHandler = requestHandler;
this.configProperties = (Properties) properties.clone();
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#getContextPathOverride()
*/
public String getContextPathOverride() {
return configProperties.getProperty(JawrConfig.JAWR_URL_CONTEXTPATH_OVERRIDE);
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#getContextPathSslOverride()
*/
public String getContextPathSslOverride() {
return configProperties.getProperty(JawrConfig.JAWR_URL_CONTEXTPATH_SSL_OVERRIDE);
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#getUseContextPathOverrideInDebugMode()
*/
public boolean getUseContextPathOverrideInDebugMode() {
return Boolean.valueOf(configProperties.getProperty(JawrConfig.JAWR_USE_URL_CONTEXTPATH_OVERRIDE_IN_DEBUG_MODE)).booleanValue();
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#getDebugOverrideKey()
*/
public String getDebugOverrideKey() {
return configProperties.getProperty(JawrConfig.JAWR_DEBUG_OVERRIDE_KEY);
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#getDwrMapping()
*/
public String getDwrMapping() {
return configProperties.getProperty(JawrConfig.JAWR_DWR_MAPPING);
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#getImageResourcesDefinition()
*/
public String getImageResourcesDefinition() {
return configProperties.getProperty(JawrConfig.JAWR_IMAGE_RESOURCES);
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#getImageHashAlgorithm()
*/
public String getImageHashAlgorithm() {
return configProperties.getProperty(JawrConfig.JAWR_IMAGE_HASH_ALGORITHM);
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#isDebugModeOn()
*/
public boolean isDebugModeOn() {
return Boolean.valueOf(configProperties.getProperty(JawrConfig.JAWR_DEBUG_ON)).booleanValue();
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#isGzipResourcesForIESixOn()
*/
public boolean isGzipResourcesForIESixOn() {
return Boolean.valueOf(configProperties.getProperty(JawrConfig.JAWR_GZIP_IE6_ON)).booleanValue();
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#isGzipResourcesModeOn()
*/
public boolean isGzipResourcesModeOn() {
return Boolean.valueOf(configProperties.getProperty(JawrConfig.JAWR_GZIP_ON)).booleanValue();
}
/**
* @return
* @see net.jawr.web.config.JawrConfig#isCssClasspathImageHandledByClasspathCss()
*/
public boolean isCssClasspathImageHandledByClasspathCss() {
return Boolean.valueOf(configProperties.getProperty(JawrConfig.JAWR_CSS_CLASSPATH_HANDLE_IMAGE)).booleanValue();
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#getJawrWorkingDirectory()
*/
public String getJawrWorkingDirectory() {
return configProperties.getProperty(JawrConfig.JAWR_WORKING_DIRECTORY);
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#isUseBundleMapping()
*/
public boolean isUseBundleMapping() {
return Boolean.valueOf(configProperties.getProperty(JawrConfig.JAWR_USE_BUNDLE_MAPPING)).booleanValue();
}
/**
* @param charsetName
* @see net.jawr.web.config.JawrConfig#setCharsetName(java.lang.String)
*/
public void setCharsetName(String charsetName) {
configProperties.setProperty(JawrConfig.JAWR_CHARSET_NAME, charsetName);
}
/**
* @param charsetName
* @see net.jawr.web.config.JawrConfig#setCharsetName(java.lang.String)
*/
public String getCharsetName() {
return configProperties.getProperty(JawrConfig.JAWR_CHARSET_NAME);
}
/**
* @param contextPathOverride
* @see net.jawr.web.config.JawrConfig#setContextPathOverride(java.lang.String)
*/
public void setContextPathOverride(String contextPathOverride) {
configProperties.setProperty(JawrConfig.JAWR_URL_CONTEXTPATH_OVERRIDE, contextPathOverride);
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#setContextPathSslOverride(java.lang.String)
*/
public void setContextPathSslOverride(String contextPathOverride) {
configProperties.setProperty(JawrConfig.JAWR_URL_CONTEXTPATH_SSL_OVERRIDE, contextPathOverride);
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#setUseContextPathOverrideInDebugMode(boolean)
*/
public void setUseContextPathOverrideInDebugMode(boolean useContextPathOverrideInDebugMode) {
configProperties.setProperty(JawrConfig.JAWR_USE_URL_CONTEXTPATH_OVERRIDE_IN_DEBUG_MODE, Boolean.toString(useContextPathOverrideInDebugMode));
}
/**
* @param cssLinkFlavor
* @see net.jawr.web.config.JawrConfig#setCssLinkFlavor(java.lang.String)
*/
public void setCssLinkFlavor(String cssLinkFlavor) {
configProperties.setProperty(JawrConfig.JAWR_CSSLINKS_FLAVOR, cssLinkFlavor);
}
public String getCssLinkFlavor() {
return configProperties.getProperty(JawrConfig.JAWR_CSSLINKS_FLAVOR);
}
/**
* @param debugMode
* @see net.jawr.web.config.JawrConfig#setDebugModeOn(boolean)
*/
public void setDebugModeOn(boolean debugMode) {
configProperties.setProperty(JawrConfig.JAWR_DEBUG_ON, Boolean.toString(debugMode));
}
/**
* @param debugOverrideKey
* @see net.jawr.web.config.JawrConfig#setDebugOverrideKey(java.lang.String)
*/
public void setDebugOverrideKey(String debugOverrideKey) {
configProperties.setProperty(JawrConfig.JAWR_DEBUG_OVERRIDE_KEY, debugOverrideKey);
}
/**
* @param dwrMapping
* @see net.jawr.web.config.JawrConfig#setDwrMapping(java.lang.String)
*/
public void setDwrMapping(String dwrMapping) {
configProperties.setProperty(JawrConfig.JAWR_DWR_MAPPING, dwrMapping);
}
/**
* @param gzipResourcesForIESixOn
* @see net.jawr.web.config.JawrConfig#setGzipResourcesForIESixOn(boolean)
*/
public void setGzipResourcesForIESixOn(boolean gzipResourcesForIESixOn) {
configProperties.setProperty(JawrConfig.JAWR_GZIP_IE6_ON, Boolean.toString(gzipResourcesForIESixOn));
}
/**
* @param gzipResourcesModeOn
* @see net.jawr.web.config.JawrConfig#setGzipResourcesModeOn(boolean)
*/
public void setGzipResourcesModeOn(boolean gzipResourcesModeOn) {
configProperties.setProperty(JawrConfig.JAWR_GZIP_ON, Boolean.toString(gzipResourcesModeOn));
}
/**
* @param imageResourcesDefinition
* @see net.jawr.web.config.JawrConfig#setImageResourcesDefinition(java.lang.String)
*/
public void setImageResourcesDefinition(String imageResourcesDefinition) {
configProperties.setProperty(JawrConfig.JAWR_IMAGE_RESOURCES, imageResourcesDefinition);
}
/**
* @param imageHashAlgorithm
* @see net.jawr.web.config.JawrConfig#setImageHashAlgorithm(java.lang.String)
*/
public void setImageHashAlgorithm(String imageHashAlgorithm) {
configProperties.setProperty(JawrConfig.JAWR_IMAGE_HASH_ALGORITHM, imageHashAlgorithm);
}
/**
* @param useClasspathCssImgServlet
* @see net.jawr.web.config.JawrConfig#setCssClasspathImageHandledByClasspathCss(boolean)
*/
public void setCssClasspathImageHandledByClasspathCss(boolean useClasspathCssImgServlet) {
configProperties.setProperty(JawrConfig.JAWR_CSS_CLASSPATH_HANDLE_IMAGE, Boolean.toString(useClasspathCssImgServlet));
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#setJawrWorkingDirectory(java.lang.String)
*/
public void setJawrWorkingDirectory(String jawrWorkingDirectory) {
configProperties.setProperty(JawrConfig.JAWR_WORKING_DIRECTORY, jawrWorkingDirectory);
}
/* (non-Javadoc)
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#setUseBundleMapping(boolean)
*/
public void setUseBundleMapping(boolean usBundleMapping) {
configProperties.setProperty(JawrConfig.JAWR_USE_BUNDLE_MAPPING, Boolean.toString(usBundleMapping));
}
/*
* (non-Javadoc)
*
* @see net.jawr.web.config.jmx.JawrConfigManagerMBean#refreshConfig()
*/
public void refreshConfig() {
requestHandler.configChanged(configProperties);
}
}