Package | Description |
---|---|
org.apache.wicket |
The core Wicket package.
|
org.apache.wicket.core.request.mapper | |
org.apache.wicket.core.util.lang |
Java utilities.
|
org.apache.wicket.mock | |
org.apache.wicket.protocol.http |
HTTP implementation.
|
org.apache.wicket.protocol.http.mock | |
org.apache.wicket.resource |
Locale aware resouce loaders.
|
org.apache.wicket.settings.def |
Modifier and Type | Field and Description |
---|---|
protected Application |
DefaultPageManagerProvider.application |
Modifier and Type | Method and Description |
---|---|
static Application |
Application.get()
Get Application for current thread.
|
static Application |
Application.get(String applicationKey)
Gets the Application based on the application key of that application.
|
Application |
Component.getApplication()
Gets interface to application that this component is a part of.
|
static Application |
ThreadContext.getApplication() |
Application |
Session.getApplication()
Get the application that is currently working with this session.
|
Modifier and Type | Method and Description |
---|---|
void |
IInitializer.destroy(Application application) |
void |
Initializer.destroy(Application application) |
void |
IInitializer.init(Application application) |
void |
Initializer.init(Application application) |
protected IRequestHandler |
DefaultExceptionMapper.mapExpectedExceptions(Exception e,
Application application)
Maps expected exceptions (i.e.
|
protected IRequestHandler |
DefaultExceptionMapper.mapUnexpectedExceptions(Exception e,
Application application)
Maps unexpected exceptions to their corresponding
IRequestHandler . |
void |
IApplicationListener.onAfterInitialized(Application application)
Called after application instance has been initialized
|
void |
ApplicationListenerCollection.onAfterInitialized(Application application) |
void |
IApplicationListener.onBeforeDestroyed(Application application)
Called before application instance is destroyed
|
void |
ApplicationListenerCollection.onBeforeDestroyed(Application application) |
static void |
ThreadContext.setApplication(Application application)
Binds the specified application to current thread.
|
Constructor and Description |
---|
DefaultMapperContext(Application application)
Constructor.
|
DefaultPageManagerProvider(Application application)
Constructor.
|
SystemMapper(Application application)
Constructor
|
Constructor and Description |
---|
CryptoMapper(IRequestMapper wrappedMapper,
Application application)
Encrypt with
ISecuritySettings.getCryptFactory() . |
Modifier and Type | Method and Description |
---|---|
static void |
PropertyResolver.destroy(Application application)
Clean up cache for this app.
|
static void |
PropertyResolver.setClassCache(Application application,
PropertyResolver.IClassCache classCache)
Sets the
PropertyResolver.IClassCache for the given application. |
Modifier and Type | Class and Description |
---|---|
class |
MockApplication
WebApplication used for testing. |
Modifier and Type | Class and Description |
---|---|
class |
WebApplication
A web application is a subclass of Application which associates with an instance of WicketServlet
to serve pages over the HTTP protocol.
|
Constructor and Description |
---|
MockHttpServletRequest(Application application,
javax.servlet.http.HttpSession session,
javax.servlet.ServletContext context)
Create the request using the supplied session object.
|
MockServletContext(Application application,
String path)
Create the mock object.
|
Modifier and Type | Method and Description |
---|---|
static void |
CoreLibrariesContributor.contribute(Application application,
IHeaderResponse response)
Contributes the backing library plus the implementation of Wicket.Event.
|
static void |
CoreLibrariesContributor.contributeAjax(Application application,
IHeaderResponse response)
Contributes the Ajax backing library plus wicket-event.js and wicket-ajax.js implementations.
|
Constructor and Description |
---|
FrameworkSettings(Application application)
Construct.
|
ResourceSettings(Application application)
Configures Wicket's default ResourceLoaders.
For an example in FooApplication let bar.Foo extend Component , this
results in the following ordering:
component specific
bar/Foo.properties
org/apache/wicket/Component.properties
package specific
bar/package.properties
package.properties (on Foo's class loader)
org/apache/wicket/package.properties
org/apache/package.properties
org/package.properties
package.properties (on Component's class loader)
application specific
FooApplication.properties
Application.properties
validator specific
Initializer specific
bar.Foo.properties (Foo implementing IInitializer)
|
StoreSettings(Application application)
Construct.
|
Copyright © 2006–2018 Apache Software Foundation. All rights reserved.