Uses of Class
org.apache.wicket.Application
-
Packages that use Application 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.core.util.string String utilities.org.apache.wicket.core.util.watch 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 -
-
Uses of Application in org.apache.wicket
Fields in org.apache.wicket declared as Application Modifier and Type Field Description protected ApplicationDefaultPageManagerProvider. applicationMethods in org.apache.wicket that return Application Modifier and Type Method Description static ApplicationApplication. get()Get Application for current thread.static ApplicationApplication. get(java.lang.String applicationKey)Gets the Application based on the application key of that application.ApplicationComponent. getApplication()Gets interface to application that this component is a part of.ApplicationSession. getApplication()Get the application that is currently working with this session.static ApplicationThreadContext. getApplication()ApplicationApplication. setApplicationSettings(ApplicationSettings applicationSettings)ApplicationApplication. setDebugSettings(DebugSettings debugSettings)ApplicationApplication. setExceptionSettings(ExceptionSettings exceptionSettings)ApplicationApplication. setFrameworkSettings(FrameworkSettings frameworkSettings)ApplicationApplication. setHeaderResponseDecorator(IHeaderResponseDecorator headerResponseDecorator)Sets anIHeaderResponseDecoratorthat you want your application to use to decorate header responses.ApplicationApplication. setJavaScriptLibrarySettings(JavaScriptLibrarySettings javaScriptLibrarySettings)ApplicationApplication. setMarkupSettings(MarkupSettings markupSettings)<T> ApplicationApplication. setMetaData(MetaDataKey<T> key, T object)Sets the metadata for this application using the given key.ApplicationApplication. setPageManagerProvider(IPageManagerProvider provider)Set the provider of anIPageManager.ApplicationApplication. setPageRendererProvider(IPageRendererProvider pageRendererProvider)ApplicationApplication. setPageSettings(PageSettings pageSettings)ApplicationApplication. setRequestCycleProvider(IRequestCycleProvider requestCycleProvider)ApplicationApplication. setRequestCycleSettings(RequestCycleSettings requestCycleSettings)ApplicationApplication. setRequestLoggerSettings(RequestLoggerSettings requestLoggerSettings)ApplicationApplication. setResourceSettings(ResourceSettings resourceSettings)ApplicationApplication. setRootRequestMapper(org.apache.wicket.request.IRequestMapper rootRequestMapper)Sets the root request mapperApplicationApplication. setSecuritySettings(SecuritySettings securitySettings)ApplicationApplication. setSessionStoreProvider(java.util.function.Supplier<ISessionStore> sessionStoreProvider)ApplicationApplication. setStoreSettings(StoreSettings storeSettings)Methods in org.apache.wicket with parameters of type Application Modifier and Type Method Description voidIInitializer. destroy(Application application)voidInitializer. destroy(Application application)voidIInitializer. init(Application application)voidInitializer. init(Application application)protected org.apache.wicket.request.IRequestHandlerDefaultExceptionMapper. mapExpectedExceptions(java.lang.Exception e, Application application)Maps expected exceptions (i.e.protected org.apache.wicket.request.IRequestHandlerDefaultExceptionMapper. mapUnexpectedExceptions(java.lang.Exception e, Application application)Maps unexpected exceptions to their correspondingIRequestHandler.voidApplicationListenerCollection. onAfterInitialized(Application application)default voidIApplicationListener. onAfterInitialized(Application application)Called after application instance has been initializedvoidApplicationListenerCollection. onBeforeDestroyed(Application application)default voidIApplicationListener. onBeforeDestroyed(Application application)Called before application instance is destroyedstatic voidThreadContext. setApplication(Application application)Binds the specified application to current thread.Constructors in org.apache.wicket with parameters of type Application Constructor Description DefaultMapperContext(Application application)Constructor.DefaultPageManagerProvider(Application application)Constructor.HomePageProvider(Application application)ParentFolderPlaceholderProvider(Application application)SystemMapper(Application application)Constructor -
Uses of Application in org.apache.wicket.core.request.mapper
Constructors in org.apache.wicket.core.request.mapper with parameters of type Application Constructor Description CryptoMapper(org.apache.wicket.request.IRequestMapper wrappedMapper, Application application)Encrypt withSecuritySettings.getCryptFactory(). -
Uses of Application in org.apache.wicket.core.util.lang
Methods in org.apache.wicket.core.util.lang with parameters of type Application Modifier and Type Method Description static voidPropertyResolver. destroy(Application application)Clean up cache for this app.static voidPropertyResolver. setLocator(Application application, PropertyResolver.IPropertyLocator locator)Set a locator for the given application. -
Uses of Application in org.apache.wicket.core.util.string
Constructors in org.apache.wicket.core.util.string with parameters of type Application Constructor Description ComponentRenderer(Application application)A renderer using the given application. -
Uses of Application in org.apache.wicket.core.util.watch
Constructors in org.apache.wicket.core.util.watch with parameters of type Application Constructor Description Nio2ModificationWatcher(Application application, org.apache.wicket.util.time.Duration pollFrequency)Constructor. -
Uses of Application in org.apache.wicket.mock
Subclasses of Application in org.apache.wicket.mock Modifier and Type Class Description classMockApplicationWebApplicationused for testing. -
Uses of Application in org.apache.wicket.protocol.http
Subclasses of Application in org.apache.wicket.protocol.http Modifier and Type Class Description classWebApplicationA web application is a subclass of Application which associates with an instance of WicketServlet to serve pages over the HTTP protocol.Methods in org.apache.wicket.protocol.http that return Application Modifier and Type Method Description ApplicationWebApplication. setAjaxRequestTargetProvider(java.util.function.Function<Page,AjaxRequestTarget> ajaxRequestTargetProvider)Sets the provider forAjaxRequestTargetobjects.ApplicationWebApplication. setConfigurationType(RuntimeConfigurationType configurationType)set runtime configuration type -
Uses of Application in org.apache.wicket.protocol.http.mock
Constructors in org.apache.wicket.protocol.http.mock with parameters of type Application Constructor Description MockHttpServletRequest(Application application, javax.servlet.http.HttpSession session, javax.servlet.ServletContext context)MockHttpServletRequest(Application application, javax.servlet.http.HttpSession session, javax.servlet.ServletContext context, java.util.Locale locale)Create the request using the supplied session object.MockServletContext(Application application, java.lang.String path)Create the mock object. -
Uses of Application in org.apache.wicket.resource
Methods in org.apache.wicket.resource with parameters of type Application Modifier and Type Method Description static voidCoreLibrariesContributor. contribute(Application application, IHeaderResponse response)Contributes the backing library plus the implementation of Wicket.Event.static voidCoreLibrariesContributor. contributeAjax(Application application, IHeaderResponse response)Contributes the Ajax backing library plus wicket-event.js and wicket-ajax.js implementations. -
Uses of Application in org.apache.wicket.settings
Constructors in org.apache.wicket.settings with parameters of type Application Constructor Description FrameworkSettings(Application application)Construct.ResourceSettings(Application application)Configures Wicket's default ResourceLoaders.
For an example inFooApplicationletbar.FooextendComponent, 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.
-