org.apache.wicket.settings
Interface ISessionSettings

All Known Implementing Classes:
SessionSettings

public interface ISessionSettings

Interface for session related settings

pageFactory - The factory class that is used for constructing page instances.

pageMapEvictionStrategy - The strategy for evicting pages from page maps when they are too full

maxPageMaps - The maximum number of page maps allowed in a session (to prevent denial of service attacks)

Author:
Igor Vaynberg (ivaynberg)

Method Summary
 IPageFactory getPageFactory()
          Deprecated. Use Session.getPageFactory()
 void setPageFactory(IPageFactory pageFactory)
          Deprecated. Use Application.newPageFactory() instead.
 

Method Detail

getPageFactory

@Deprecated
IPageFactory getPageFactory()
Deprecated. Use Session.getPageFactory()

Gets the factory to be used when creating pages

Returns:
The default page factory

setPageFactory

@Deprecated
void setPageFactory(IPageFactory pageFactory)
Deprecated. Use Application.newPageFactory() instead.

Sets the factory to be used when creating pages.

Parameters:
pageFactory - The default factory


Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.