org.apache.wicket.protocol.http
Interface IWebApplicationFactory

All Known Implementing Classes:
ContextParamWebApplicationFactory, GuiceWebApplicationFactory, SpringWebApplicationFactory

public interface IWebApplicationFactory

A factory interface used by wicket filter to create application objects. Configure your webapplication to use this factory in web.xml like:

     <init-param>
       <param-name>applicationFactoryClassName</param-name>
         <param-value>org.apache.wicket.spring.SpringWebApplicationFactory</param-value>
     </init-param>
   
 

Author:
Igor Vaynberg (ivaynberg)

Method Summary
 WebApplication createApplication(WicketFilter filter)
          Create application object
 

Method Detail

createApplication

WebApplication createApplication(WicketFilter filter)
Create application object

Parameters:
filter - the wicket filter
Returns:
application object instance


Copyright © 2004-2010 Apache Software Foundation. All Rights Reserved.