Uses of Class
org.apache.wicket.protocol.http.WebApplication
-
Packages that use WebApplication Package Description org.apache.wicket.authroles.authentication org.apache.wicket.csp org.apache.wicket.guice org.apache.wicket.markup.html Base package of HTML markup.org.apache.wicket.mock org.apache.wicket.protocol.http HTTP implementation.org.apache.wicket.protocol.ws org.apache.wicket.protocol.ws.api org.apache.wicket.protocol.ws.api.message org.apache.wicket.protocol.ws.javax org.apache.wicket.spring org.apache.wicket.spring.injection.annot This package contains all the classes to make your wicket components and other pojos @SpringBean annotation aware.org.apache.wicket.util.cookies Persistence support for forms.org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of WebApplication in org.apache.wicket.authroles.authentication
Subclasses of WebApplication in org.apache.wicket.authroles.authentication Modifier and Type Class Description class
AuthenticatedWebApplication
A web application subclass that does role-based authentication. -
Uses of WebApplication in org.apache.wicket.csp
Methods in org.apache.wicket.csp with parameters of type WebApplication Modifier and Type Method Description void
ContentSecurityPolicySettings. enforce(WebApplication application)
Enforce CSP settings on an application. -
Uses of WebApplication in org.apache.wicket.guice
Methods in org.apache.wicket.guice that return WebApplication Modifier and Type Method Description WebApplication
GuiceWebApplicationFactory. createApplication(WicketFilter filter)
-
Uses of WebApplication in org.apache.wicket.markup.html
Methods in org.apache.wicket.markup.html that return WebApplication Modifier and Type Method Description WebApplication
WebComponent. getWebApplication()
A convenience method to return the WebApplication.WebApplication
WebMarkupContainer. getWebApplication()
A convenience method to return the WebApplication. -
Uses of WebApplication in org.apache.wicket.mock
Subclasses of WebApplication in org.apache.wicket.mock Modifier and Type Class Description class
MockApplication
WebApplication
used for testing. -
Uses of WebApplication in org.apache.wicket.protocol.http
Methods in org.apache.wicket.protocol.http that return WebApplication Modifier and Type Method Description protected WebApplication
ContextParamWebApplicationFactory. createApplication(String applicationClassName)
Instantiates the application instance.WebApplication
ContextParamWebApplicationFactory. createApplication(WicketFilter filter)
WebApplication
IWebApplicationFactory. createApplication(WicketFilter filter)
Create application objectstatic WebApplication
WebApplication. get()
Covariant override for easy getting the currentWebApplication
without having to cast it.protected WebApplication
WicketFilter. getApplication()
Constructors in org.apache.wicket.protocol.http with parameters of type WebApplication Constructor Description WicketFilter(WebApplication application)
constructor supporting programmatic setup of the filter -
Uses of WebApplication in org.apache.wicket.protocol.ws
Constructors in org.apache.wicket.protocol.ws with parameters of type WebApplication Constructor Description AbstractUpgradeFilter(WebApplication application)
-
Uses of WebApplication in org.apache.wicket.protocol.ws.api
Methods in org.apache.wicket.protocol.ws.api that return WebApplication Modifier and Type Method Description protected WebApplication
AbstractWebSocketProcessor. getApplication()
Methods in org.apache.wicket.protocol.ws.api with parameters of type WebApplication Modifier and Type Method Description default void
IWebSocketProcessor. onOpen(IWebSocketSession webSocketSession, WebApplication application)
Called when thenIWebSocketSession
is being opened: to allow to configure the underlying web socket session.Constructors in org.apache.wicket.protocol.ws.api with parameters of type WebApplication Constructor Description AbstractWebSocketProcessor(javax.servlet.http.HttpServletRequest request, WebApplication application)
Constructor. -
Uses of WebApplication in org.apache.wicket.protocol.ws.api.message
Constructors in org.apache.wicket.protocol.ws.api.message with parameters of type WebApplication Constructor Description BinaryMessage(WebApplication application, String sessionId, IKey key, byte[] data, int offset, int length)
Constructor. -
Uses of WebApplication in org.apache.wicket.protocol.ws.javax
Constructors in org.apache.wicket.protocol.ws.javax with parameters of type WebApplication Constructor Description JavaxWebSocketFilter(WebApplication application)
JavaxWebSocketProcessor(javax.websocket.Session session, WebApplication application, javax.websocket.EndpointConfig endpointConfig)
Constructor. -
Uses of WebApplication in org.apache.wicket.spring
Methods in org.apache.wicket.spring that return WebApplication Modifier and Type Method Description WebApplication
SpringWebApplicationFactory. createApplication(WicketFilter filter)
-
Uses of WebApplication in org.apache.wicket.spring.injection.annot
Methods in org.apache.wicket.spring.injection.annot with parameters of type WebApplication Modifier and Type Method Description static void
SpringComponentInjector. setDefaultContext(WebApplication webapp, org.springframework.context.ApplicationContext context)
Set the default context for the given webapp.Constructors in org.apache.wicket.spring.injection.annot with parameters of type WebApplication Constructor Description SpringComponentInjector(WebApplication webapp)
Constructor used when spring application context is declared in the spring standard way and can be located throughWebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext)
.SpringComponentInjector(WebApplication webapp, org.springframework.context.ApplicationContext ctx)
ConstructorSpringComponentInjector(WebApplication webapp, org.springframework.context.ApplicationContext ctx, boolean wrapInProxies)
Constructor -
Uses of WebApplication in org.apache.wicket.util.cookies
Methods in org.apache.wicket.util.cookies with parameters of type WebApplication Modifier and Type Method Description String
CookieUtils. getSessionIdCookieName(WebApplication application)
Gets the name of the cookie where the session id is stored. -
Uses of WebApplication in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return WebApplication Modifier and Type Method Description WebApplication
BaseWicketTester. getApplication()
Returns theApplication
for this environment.protected WebApplication
WicketTestCase. newApplication()
Methods in org.apache.wicket.util.tester with parameters of type WebApplication Modifier and Type Method Description protected WicketTester
WicketTestCase. newWicketTester(WebApplication app)
In case you need to subclass WicketTester and want to be independent on possible changes in setUp().Constructors in org.apache.wicket.util.tester with parameters of type WebApplication Constructor Description BaseWicketTester(WebApplication application)
Creates aWicketTester
.BaseWicketTester(WebApplication application, boolean init)
Creates aWicketTester
.BaseWicketTester(WebApplication application, String servletContextBasePath)
Creates aWicketTester
.BaseWicketTester(WebApplication application, javax.servlet.ServletContext servletCtx)
Creates aWicketTester
.BaseWicketTester(WebApplication application, javax.servlet.ServletContext servletCtx, boolean init)
Creates aWicketTester
.WicketTester(WebApplication application)
Creates aWicketTester
.WicketTester(WebApplication application, boolean init)
Creates aWicketTester
to help unit testing.WicketTester(WebApplication application, String path)
Creates aWicketTester
to help unit testing.WicketTester(WebApplication application, javax.servlet.ServletContext servletCtx)
Creates aWicketTester
to help unit testing.WicketTester(WebApplication application, javax.servlet.ServletContext servletCtx, boolean init)
Creates aWicketTester
to help unit testing.
-