Package org.apache.wicket.jmx.wrapper
Class Application
- java.lang.Object
-
- org.apache.wicket.jmx.wrapper.Application
-
- All Implemented Interfaces:
ApplicationMBean
public class Application extends Object implements ApplicationMBean
Exposes Application related functionality for JMX.- Author:
- eelcohillenius
-
-
Constructor Summary
Constructors Constructor Description Application(Application application)
Create.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearLocalizerCache()
Clears the localizer cache.void
clearMarkupCache()
Clears the markup cache, so that templates and properties etc will be reloaded the next time they are requested.String
getApplicationClass()
Gets the class of the application.String
getConfigurationType()
The configuration type, eitherRuntimeConfigurationType.DEVELOPMENT
orRuntimeConfigurationType.DEPLOYMENT
.String
getHomePageClass()
Gets the configured home page for this application.int
getMarkupCacheSize()
Gets the number of elements currently in the markup cache.String
getWicketVersion()
Gets the Wicket version.
-
-
-
Constructor Detail
-
Application
public Application(Application application)
Create.- Parameters:
application
-
-
-
Method Detail
-
clearMarkupCache
public void clearMarkupCache() throws IOException
Description copied from interface:ApplicationMBean
Clears the markup cache, so that templates and properties etc will be reloaded the next time they are requested.- Specified by:
clearMarkupCache
in interfaceApplicationMBean
- Throws:
IOException
- See Also:
ApplicationMBean.clearMarkupCache()
-
getApplicationClass
public String getApplicationClass() throws IOException
Description copied from interface:ApplicationMBean
Gets the class of the application.- Specified by:
getApplicationClass
in interfaceApplicationMBean
- Returns:
- the class of the application
- Throws:
IOException
- See Also:
ApplicationMBean.getApplicationClass()
-
getConfigurationType
public String getConfigurationType()
Description copied from interface:ApplicationMBean
The configuration type, eitherRuntimeConfigurationType.DEVELOPMENT
orRuntimeConfigurationType.DEPLOYMENT
.- Specified by:
getConfigurationType
in interfaceApplicationMBean
- Returns:
- The configuration type
- See Also:
ApplicationMBean.getConfigurationType()
-
getHomePageClass
public String getHomePageClass() throws IOException
Description copied from interface:ApplicationMBean
Gets the configured home page for this application.- Specified by:
getHomePageClass
in interfaceApplicationMBean
- Returns:
- the configured home page for this application
- Throws:
IOException
- See Also:
ApplicationMBean.getHomePageClass()
-
getMarkupCacheSize
public int getMarkupCacheSize() throws IOException
Description copied from interface:ApplicationMBean
Gets the number of elements currently in the markup cache.- Specified by:
getMarkupCacheSize
in interfaceApplicationMBean
- Returns:
- the number of elements currently in the markup cache
- Throws:
IOException
- See Also:
ApplicationMBean.getMarkupCacheSize()
-
getWicketVersion
public String getWicketVersion() throws IOException
Description copied from interface:ApplicationMBean
Gets the Wicket version. The Wicket version is in the same format as the version element in the pom.xml file (project descriptor). The version is generated by maven in the build/release cycle and put in the wicket.properties file located in the root folder of the Wicket jar. The version usually follows one of the following formats:- major.minor[.bug] for stable versions. 1.1, 1.2, 1.2.1 are examples
- major.minor-state for development versions. 1.2-beta2, 1.3-SNAPSHOT are examples
- Specified by:
getWicketVersion
in interfaceApplicationMBean
- Returns:
- the Wicket version
- Throws:
IOException
- See Also:
ApplicationMBean.getWicketVersion()
-
clearLocalizerCache
public void clearLocalizerCache() throws IOException
Description copied from interface:ApplicationMBean
Clears the localizer cache.- Specified by:
clearLocalizerCache
in interfaceApplicationMBean
- Throws:
IOException
- See Also:
ApplicationMBean.clearLocalizerCache()
-
-