Package org.apache.wicket.jmx.wrapper
Class SessionSettings
- java.lang.Object
-
- org.apache.wicket.jmx.wrapper.SessionSettings
-
- All Implemented Interfaces:
SessionSettingsMBean
public class SessionSettings extends Object implements SessionSettingsMBean
Exposes Application related functionality for JMX.- Author:
- eelcohillenius
-
-
Constructor Summary
Constructors Constructor Description SessionSettings(Application application)
Create.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPageFactory()
Gets the factory to be used when creating pagesString
getSessionStore()
Gets the session store implementation.
-
-
-
Constructor Detail
-
SessionSettings
public SessionSettings(Application application)
Create.- Parameters:
application
-
-
-
Method Detail
-
getPageFactory
public String getPageFactory()
Description copied from interface:SessionSettingsMBean
Gets the factory to be used when creating pages- Specified by:
getPageFactory
in interfaceSessionSettingsMBean
- Returns:
- The default page factory
- See Also:
SessionSettingsMBean.getPageFactory()
-
getSessionStore
public String getSessionStore()
Description copied from interface:SessionSettingsMBean
Gets the session store implementation.- Specified by:
getSessionStore
in interfaceSessionSettingsMBean
- Returns:
- the session store implementation
- See Also:
SessionSettingsMBean.getSessionStore()
-
-