net.jawr.web.config.jmx.JawrApplicationConfigManagerMBean 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;
/**
* This interface defines the MBean which manage the Jawr configuration for a we application,
* so it will affect all JawrConfigManagerMBean associated to Jawr Servlets.
*
* @author Ibrahim Chaehoi
*/
public interface JawrApplicationConfigManagerMBean {
/**
* @return
* @see net.jawr.web.config.JawrConfig#getDebugOverrideKey()
*/
public String getDebugOverrideKey();
/**
* @param debugOverrideKey
* @see net.jawr.web.config.JawrConfig#setDebugOverrideKey(java.lang.String)
*/
public void setDebugOverrideKey(String debugOverrideKey);
/**
* @return
* @see net.jawr.web.config.JawrConfig#isDebugModeOn()
*/
public String getDebugModeOn();
/**
* @param debugMode
* @see net.jawr.web.config.JawrConfig#setDebugModeOn(boolean)
*/
public void setDebugModeOn(String debugMode);
/**
* @return
* @see net.jawr.web.config.JawrConfig#isGzipResourcesForIESixOn()
*/
public String getGzipResourcesForIESixOn();
/**
* @param gzipResourcesForIESixOn
* @see net.jawr.web.config.JawrConfig#setGzipResourcesForIESixOn(boolean)
*/
public void setGzipResourcesForIESixOn(String gzipResourcesForIESixOn);
/**
* @return
* @see net.jawr.web.config.JawrConfig#isGzipResourcesModeOn()
*/
public String getGzipResourcesModeOn();
/**
* @param gzipResourcesModeOn
* @see net.jawr.web.config.JawrConfig#setGzipResourcesModeOn(boolean)
*/
public void setGzipResourcesModeOn(String gzipResourcesModeOn);
/**
* @param charsetName
* @see net.jawr.web.config.JawrConfig#getCharsetName(java.lang.String)
*/
public String getCharsetName();
/**
* @param charsetName
* @see net.jawr.web.config.JawrConfig#setCharsetName(java.lang.String)
*/
public void setCharsetName(String charsetName);
/**
* @return
* @see net.jawr.web.config.JawrConfig#getContextPathOverride()
*/
public String getContextPathOverride();
/**
* @param contextPathOverride
* @see net.jawr.web.config.JawrConfig#setContextPathOverride(java.lang.String)
*/
public void setContextPathOverride(String contextPathOverride);
/**
* @return
* @see net.jawr.web.config.JawrConfig#getContextPathOverride()
*/
public String getContextPathSslOverride();
/**
* @param contextPathOverride
* @see net.jawr.web.config.JawrConfig#setContextPathOverride(java.lang.String)
*/
public void setContextPathSslOverride(String contextPathOverride);
/**
* @param contextPathOverride
* @see net.jawr.web.config.JawrConfig#setUseContextPathOverrideInDebugMode(boolean)
*/
public void setUseContextPathOverrideInDebugMode(String useContextPathOverrideInDebugMode);
/**
* @param contextPathOverride
* @see net.jawr.web.config.JawrConfig#getUseContextPathOverrideInDebugMode()
*/
public String getUseContextPathOverrideInDebugMode();
/**
* Returns the flag which defines if we should process the bundle at server startup. defaults to false.
* @return the flag which defines if we should process the bundle at server startup.
*/
public String getUseBundleMapping();
/**
* Sets the flag which defines if we should process the bundle at server startup.
* @param usBundleMapping the flag to set
*/
public void setUseBundleMapping(String usBundleMapping);
/**
* Returns the jawr working directory path
* @return the jawr working directory path
*/
public String getJawrWorkingDirectory();
/**
* Sets the jawr working directory path
* @param jawrWorkingDirectory the path to set
*/
public void setJawrWorkingDirectory(String jawrWorkingDirectory);
/**
* Refresh the configuration.
*/
public void refreshConfig();
/**
* Add a session ID, to the set of debug session ID.
* All request make by sessions where their IDs is contained in the debug session Set,
* will be threated as in debug mode.
*
* @param sessionId the session ID to add
*/
public void addDebugSessionId(String sessionId);
/**
* Add a session ID, to the set of debug session ID.
* All request make by sessions where their IDs is contained in the debug session Set,
* will be threated as in debug mode.
*
* @param sessionId the session ID to add
*/
public void removeDebugSessionId(String sessionId);
/**
* Remove a session ID from the set of debug session ID.
*
* @param sessionId the session ID to remove
*/
public void removeAllDebugSessionId();
/**
* Returns true if the session ID passed in parameter is a debuggable session ID
* @param sessionId the session ID
* @return true if the session ID passed in parameter is a debuggable session ID
*/
public boolean isDebugSessionId(String sessionId);
}