wicket.jmx.ApplicationSettingsMBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-jmx Show documentation
Show all versions of wicket-jmx Show documentation
Wicket Java Management Extensions for Wicket 1.x (will be part of the main distro from Wicket 2.0 on)
/*
* ==============================================================================
* 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 wicket.jmx;
import wicket.settings.IApplicationSettings;
/**
* Application settings.
*
* @author eelcohillenius
*/
public interface ApplicationSettingsMBean
{
/**
* Gets the access denied page class.
*
* @return Returns the accessDeniedPage.
* @see IApplicationSettings#setAccessDeniedPage(Class)
*/
String getAccessDeniedPage();
/**
* Gets the default resolver to use when finding classes
*
* @return Default class resolver
*/
String getClassResolver();
/**
* Gets context path to use for absolute path generation. For example an
* Application Server that is used as a virtual server on a Webserver:
*
*
* appserver.com/context mapped to webserver/ (context path should be '/')
*
*
* @return The context path
*
* @see IApplicationSettings#setContextPath(String) what the possible values
* can be.
*/
String getContextPath();
/**
* Gets the converter factory.
*
* @return the converter factory
*/
String getConverterFactory();
/**
* Gets internal error page class.
*
* @return Returns the internalErrorPage.
* @see IApplicationSettings#setInternalErrorPage(Class)
*/
String getInternalErrorPage();
/**
* Gets the page expired page class.
*
* @return Returns the pageExpiredErrorPage.
* @see IApplicationSettings#setPageExpiredErrorPage(Class)
*/
String getPageExpiredErrorPage();
/**
* Gets the unexpected exception display.
*
* @return the unexpected exception display
*/
String getUnexpectedExceptionDisplay();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy