Uses of Interface
org.apache.wiki.api.core.Engine
-
Packages that use Engine Package Description org.apache.wiki.api.core JSPWiki's central API.org.apache.wiki.api.engine JSPWiki's Engine's component related classes.org.apache.wiki.api.filters Filter's API package of JSPWiki.org.apache.wiki.api.plugin Plugin's API package of JSPWiki.org.apache.wiki.api.providers Page Providers' API package of JSPWiki.org.apache.wiki.api.spi JSPWiki's SPI package. -
-
Uses of Engine in org.apache.wiki.api.core
Methods in org.apache.wiki.api.core with type parameters of type Engine Modifier and Type Method Description default <E extends Engine>
EEngine. adapt(java.lang.Class<E> cls)Adapt Engine to a concrete type.Methods in org.apache.wiki.api.core that return Engine Modifier and Type Method Description EngineContext. getEngine()Returns the handling engine. -
Uses of Engine in org.apache.wiki.api.engine
Methods in org.apache.wiki.api.engine with parameters of type Engine Modifier and Type Method Description voidInitializable. initialize(Engine engine, java.util.Properties props)Initializes this Engine component.default voidEngineLifecycleExtension. onShutdown(Engine e, java.util.Properties properties)Called beforeEngineshutdown.default voidEngineLifecycleExtension. onStart(Engine e, java.util.Properties properties)Called afterEngineinitialization. -
Uses of Engine in org.apache.wiki.api.filters
Fields in org.apache.wiki.api.filters declared as Engine Modifier and Type Field Description protected EngineBasePageFilter. m_engineMethods in org.apache.wiki.api.filters with parameters of type Engine Modifier and Type Method Description default voidPageFilter. destroy(Engine engine)Called for every filter, e.g. on wiki engine shutdown.voidBasePageFilter. initialize(Engine engine, java.util.Properties properties)If you override this, you should call super.initialize() first.voidPageFilter. initialize(Engine engine, java.util.Properties properties)Is called whenever the a new PageFilter is instantiated and reset. -
Uses of Engine in org.apache.wiki.api.plugin
Methods in org.apache.wiki.api.plugin with parameters of type Engine Modifier and Type Method Description voidInitializablePlugin. initialize(Engine engine)Called whenever the plugin is being instantiated for the first time. -
Uses of Engine in org.apache.wiki.api.providers
Methods in org.apache.wiki.api.providers with parameters of type Engine Modifier and Type Method Description voidWikiProvider. initialize(Engine engine, java.util.Properties properties)Initializes the page provider. -
Uses of Engine in org.apache.wiki.api.spi
Methods in org.apache.wiki.api.spi that return Engine Modifier and Type Method Description EngineEngineDSL. find(javax.servlet.ServletConfig config)Locate, or build if necessary, a configuredEngineinstance.EngineEngineDSL. find(javax.servlet.ServletConfig config, java.util.Properties props)Locate, or build if necessary, a configuredEngineinstance.EngineEngineDSL. find(javax.servlet.ServletContext context, java.util.Properties props)Locate, or build if necessary, a configuredEngineinstance.EngineEngineSPI. find(javax.servlet.ServletContext context, java.util.Properties props)Locate, or build if necessary, a configuredEngineinstance.Methods in org.apache.wiki.api.spi with parameters of type Engine Modifier and Type Method Description AttachmentContentsDSL. attachment(Engine engine, java.lang.String parentPage, java.lang.String fileName)Creates a newAttachment.AttachmentContentsSPI. attachment(Engine engine, java.lang.String parentPage, java.lang.String fileName)Creates a newAttachment.ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, java.lang.String requestContext)Creates a new Context from a supplied HTTP request, using a default wiki context.ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)Creates a new Context for the given Engine, Command and HttpServletRequest.ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)Creates a new Context for the given Engine, Page and HttpServletRequest.ContextContextDSL. create(Engine engine, Page page)Create a new Context for the given Page.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, java.lang.String requestContext)Creates a new Context from a supplied HTTP request, using a default wiki context.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)Creates a new Context for the given Engine, Command and HttpServletRequest.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)Creates a new Context for the given Engine, Page and HttpServletRequest.ContextContextSPI. create(Engine engine, Page page)Create a new Context for the given Page.SessionSessionDSL. find(Engine engine, javax.servlet.http.HttpServletRequest request)Returns the Session object associated with the current HTTP request.SessionSessionSPI. find(Engine engine, javax.servlet.http.HttpServletRequest request)Returns the Session object associated with the current HTTP request.SessionSessionDSL. guest(Engine engine)Creates a new "guest" session containing a single user Principalorg.apache.wiki.auth.WikiPrincipal#GUEST, plus the role principalsRole#ALLandRole#ANONYMOUS.SessionSessionSPI. guest(Engine engine)Creates a new "guest" session containing a single user Principalorg.apache.wiki.auth.WikiPrincipal#GUEST, plus the role principalsRole#ALLandRole#ANONYMOUS.PageContentsDSL. page(Engine engine, java.lang.String name)Creates aPageinstance.PageContentsSPI. page(Engine engine, java.lang.String name)Creates aPageinstance.voidSessionDSL. remove(Engine engine, javax.servlet.http.HttpServletRequest request)Removes the wiki session associated with the user's HTTP request from the cache of wiki sessions, typically as part of a logout process.voidSessionSPI. remove(Engine engine, javax.servlet.http.HttpServletRequest request)Removes the wiki session associated with the user's HTTP request from the cache of wiki sessions, typically as part of a logout process.
-