wicket.protocol.http
Interface IWebApplicationFactory
- All Known Implementing Classes:
- ContextParamWebApplicationFactory
public interface IWebApplicationFactory
A factory interface used by wicket servlet to create application objects.
Configure your webapplication to use this factory in web.xml like:
<init-param>
<param-name>applicationFactoryClassName</param-name>
<param-value>teachscape.platform.web.wicket.SpringApplicationFactory</param-value>
</init-param>
- Author:
- Igor Vaynberg (ivaynberg)
createApplication
WebApplication createApplication(WicketServlet servlet)
- Create application object
- Parameters:
servlet - the wicket servlet
- Returns:
- application object instance
Copyright © 2004-2007 Wicket developers. All Rights Reserved.