Uses of Interface
org.apache.wiki.api.core.Engine
-
Packages that use Engine Package Description org.apache.wiki The chief package of JSPWiki.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.org.apache.wiki.attachment Attachment management, uploading and downloading.org.apache.wiki.auth Authentication, Authorization and the third A thing.org.apache.wiki.auth.acl Access Control List implementation.org.apache.wiki.auth.authorize Authorizer implementation.org.apache.wiki.auth.login Provides the different login modules that JSPWiki uses.org.apache.wiki.auth.user org.apache.wiki.cache Provides a cache abstraction for JSPWiki.org.apache.wiki.diff org.apache.wiki.filters Provides page and content filtering functionality for JSPWiki.org.apache.wiki.htmltowiki HTML to wiki syntax translation related classes.org.apache.wiki.i18n I18n related classes.org.apache.wiki.modules org.apache.wiki.pages Entry point for JSPWiki's Page Objects.org.apache.wiki.parser org.apache.wiki.plugin Provides plugins to the JSPWiki.org.apache.wiki.providers Provides storage for JSPWiki.org.apache.wiki.references Provides the JSPWiki track of pages' references.org.apache.wiki.render Provides the JSPWiki rendering functionality.org.apache.wiki.rss Provides the JSPWiki RSS feeds functionality.org.apache.wiki.search Provides the JSPWiki search functionality.org.apache.wiki.search.kendra org.apache.wiki.spi org.apache.wiki.ui Java classes for management of the JSP user interface.org.apache.wiki.ui.admin Contains classes for the JSPWiki administrative interface.org.apache.wiki.ui.admin.beans org.apache.wiki.url Provides the URL generation routines.org.apache.wiki.workflow org.apache.wiki.xmlrpc -
-
Uses of Engine in org.apache.wiki
Classes in org.apache.wiki that implement Engine Modifier and Type Class Description class
WikiEngine
Main implementation forEngine
.Methods in org.apache.wiki that return Engine Modifier and Type Method Description Engine
WikiBackgroundThread. getEngine()
Returns the Engine that created this background thread.Methods in org.apache.wiki with parameters of type Engine Modifier and Type Method Description protected static Command
WikiContext. findCommand(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)
Looks up and returns a PageCommand based on a supplied WikiPage and HTTP request.static WatchDog
WatchDog. getCurrentWatchDog(Engine engine)
Returns the current watchdog for the current thread.static Session
WikiSession. getWikiSession(Engine engine, javax.servlet.http.HttpServletRequest request)
Static factory method that returns the Session object associated with the current HTTP request.static Session
WikiSession. guestSession(Engine engine)
Static factory method that creates a new "guest" session containing a single user PrincipalWikiPrincipal.GUEST
, plus the role principalsRole.ALL
andRole.ANONYMOUS
.default void
WikiProvider. initialize(Engine engine, java.util.Properties properties)
Deprecated.Initializes the page provider.static void
WikiSession. removeWikiSession(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.static int
WikiSession. sessions(Engine engine)
Deprecated.useSessionMonitor.sessions()
insteadstatic java.security.Principal[]
WikiSession. userPrincipals(Engine engine)
Deprecated.useSessionMonitor.userPrincipals()
insteadConstructors in org.apache.wiki with parameters of type Engine Constructor Description WatchDog(Engine engine, java.lang.Thread thread)
Creates a new WatchDog for a Thread.WatchDog(Engine engine, Watchable watch)
Creates a new WatchDog for a Watchable.WikiBackgroundThread(Engine engine, int sleepInterval)
Constructs a new instance of this background thread with a specified sleep interval, and adds the new instance to the wiki engine's event listeners.WikiContext(Engine engine, javax.servlet.http.HttpServletRequest request, java.lang.String requestContext)
Creates a new WikiContext from a supplied HTTP request, using a default wiki context.WikiContext(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)
Creates a new WikiContext for the given Engine, Command and HttpServletRequest.WikiContext(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)
Creates a new WikiContext for the given Engine, WikiPage and HttpServletRequest.WikiContext(Engine engine, Page page)
Create a new WikiContext for the given WikiPage.WikiPage(Engine engine, java.lang.String name)
Create a new WikiPage using a given engine and name. -
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 Engine
Context. 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 void
Initializable. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component. -
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 Engine
BasePageFilter. m_engine
Methods in org.apache.wiki.api.filters with parameters of type Engine Modifier and Type Method Description void
BasicPageFilter. destroy(Engine engine)
Deprecated.default void
PageFilter. destroy(Engine engine)
Called for every filter, e.g. on wiki engine shutdown.void
BasePageFilter. initialize(Engine engine, java.util.Properties properties)
If you override this, you should call super.initialize() first.void
PageFilter. 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 void
InitializablePlugin. 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 void
WikiProvider. 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 Engine
EngineDSL. find(javax.servlet.ServletConfig config)
Locate, or build if necessary, a configuredEngine
instance.Engine
EngineDSL. find(javax.servlet.ServletConfig config, java.util.Properties props)
Locate, or build if necessary, a configuredEngine
instance.Engine
EngineDSL. find(javax.servlet.ServletContext context, java.util.Properties props)
Locate, or build if necessary, a configuredEngine
instance.Engine
EngineSPI. find(javax.servlet.ServletContext context, java.util.Properties props)
Locate, or build if necessary, a configuredEngine
instance.Methods in org.apache.wiki.api.spi with parameters of type Engine Modifier and Type Method Description Attachment
ContentsDSL. attachment(Engine engine, java.lang.String parentPage, java.lang.String fileName)
Creates a newAttachment
.Attachment
ContentsSPI. attachment(Engine engine, java.lang.String parentPage, java.lang.String fileName)
Creates a newAttachment
.Context
ContextDSL. 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.Context
ContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)
Creates a new Context for the given Engine, Command and HttpServletRequest.Context
ContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)
Creates a new Context for the given Engine, Page and HttpServletRequest.Context
ContextDSL. create(Engine engine, Page page)
Create a new Context for the given Page.Context
ContextSPI. 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.Context
ContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)
Creates a new Context for the given Engine, Command and HttpServletRequest.Context
ContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)
Creates a new Context for the given Engine, Page and HttpServletRequest.Context
ContextSPI. create(Engine engine, Page page)
Create a new Context for the given Page.Session
SessionDSL. find(Engine engine, javax.servlet.http.HttpServletRequest request)
Returns the Session object associated with the current HTTP request.Session
SessionSPI. find(Engine engine, javax.servlet.http.HttpServletRequest request)
Returns the Session object associated with the current HTTP request.Session
SessionDSL. guest(Engine engine)
Creates a new "guest" session containing a single user Principalorg.apache.wiki.auth.WikiPrincipal#GUEST
, plus the role principalsRole#ALL
andRole#ANONYMOUS
.Session
SessionSPI. guest(Engine engine)
Creates a new "guest" session containing a single user Principalorg.apache.wiki.auth.WikiPrincipal#GUEST
, plus the role principalsRole#ALL
andRole#ANONYMOUS
.Page
ContentsDSL. page(Engine engine, java.lang.String name)
Creates aPage
instance.Page
ContentsSPI. page(Engine engine, java.lang.String name)
Creates aPage
instance.void
SessionDSL. 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.void
SessionSPI. 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. -
Uses of Engine in org.apache.wiki.attachment
Constructors in org.apache.wiki.attachment with parameters of type Engine Constructor Description Attachment(Engine engine, java.lang.String parentPage, java.lang.String fileName)
Creates a new attachment.DefaultAttachmentManager(Engine engine, java.util.Properties props)
Creates a new AttachmentManager.DynamicAttachment(Engine engine, java.lang.String parentPage, java.lang.String fileName, DynamicAttachmentProvider provider)
Creates a DynamicAttachment. -
Uses of Engine in org.apache.wiki.auth
Methods in org.apache.wiki.auth with parameters of type Engine Modifier and Type Method Description static SessionMonitor
SessionMonitor. getInstance(Engine engine)
Returns the instance of the SessionMonitor for this wiki.void
Authorizer. initialize(Engine engine, java.util.Properties props)
Initializes the authorizer.void
DefaultAuthenticationManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component.void
DefaultAuthorizationManager. initialize(Engine engine, java.util.Properties properties)
Initializes this Engine component.void
DefaultUserManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component.Constructors in org.apache.wiki.auth with parameters of type Engine Constructor Description SecurityVerifier(Engine engine, Session session)
Constructs a new SecurityVerifier for a supplied Engine and WikiSession. -
Uses of Engine in org.apache.wiki.auth.acl
Methods in org.apache.wiki.auth.acl with parameters of type Engine Modifier and Type Method Description void
DefaultAclManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component. -
Uses of Engine in org.apache.wiki.auth.authorize
Fields in org.apache.wiki.auth.authorize declared as Engine Modifier and Type Field Description protected Engine
DefaultGroupManager. m_engine
protected Engine
WebContainerAuthorizer. m_engine
Methods in org.apache.wiki.auth.authorize with parameters of type Engine Modifier and Type Method Description void
DefaultGroupManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component.void
GroupDatabase. initialize(Engine engine, java.util.Properties props)
Initializes the group database based on values from a Properties object.void
JDBCGroupDatabase. initialize(Engine engine, java.util.Properties props)
Initializes the group database based on values from a Properties object.void
WebContainerAuthorizer. initialize(Engine engine, java.util.Properties props)
Initializes the authorizer for.void
XMLGroupDatabase. initialize(Engine engine, java.util.Properties props)
Initializes the group database based on values from a Properties object. -
Uses of Engine in org.apache.wiki.auth.login
Methods in org.apache.wiki.auth.login that return Engine Modifier and Type Method Description Engine
WikiEngineCallback. getEngine()
Returns the engine.Methods in org.apache.wiki.auth.login with parameters of type Engine Modifier and Type Method Description static void
CookieAuthenticationLoginModule. clearLoginCookie(Engine engine, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Clears away the login cookie, and removes the uid-username mapping file as well.void
WikiEngineCallback. setEngine(Engine engine)
Sets the engine object.static void
CookieAuthenticationLoginModule. setLoginCookie(Engine engine, javax.servlet.http.HttpServletResponse response, java.lang.String username)
Sets a login cookie based on properties set by the user.Constructors in org.apache.wiki.auth.login with parameters of type Engine Constructor Description WebContainerCallbackHandler(Engine engine, javax.servlet.http.HttpServletRequest request)
Create a new handler.WikiCallbackHandler(Engine engine, javax.servlet.http.HttpServletRequest request, java.lang.String username, java.lang.String password)
Create a new callback handler. -
Uses of Engine in org.apache.wiki.auth.user
Methods in org.apache.wiki.auth.user with parameters of type Engine Modifier and Type Method Description abstract void
AbstractUserDatabase. initialize(Engine engine, java.util.Properties props)
Initializes the user database based on values from a Properties object.void
DummyUserDatabase. initialize(Engine engine, java.util.Properties props)
No-op.void
JDBCUserDatabase. initialize(Engine engine, java.util.Properties props)
void
UserDatabase. initialize(Engine engine, java.util.Properties props)
Initializes the user database based on values from a Properties object.void
XMLUserDatabase. initialize(Engine engine, java.util.Properties props)
Initializes the user database based on values from a Properties object. -
Uses of Engine in org.apache.wiki.cache
Methods in org.apache.wiki.cache with parameters of type Engine Modifier and Type Method Description void
EhcacheCachingManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component. -
Uses of Engine in org.apache.wiki.diff
Methods in org.apache.wiki.diff with parameters of type Engine Modifier and Type Method Description void
ContextualDiffProvider. initialize(Engine engine, java.util.Properties properties)
void
DiffProvider.NullDiffProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
ExternalDiffProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
TraditionalDiffProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.Constructors in org.apache.wiki.diff with parameters of type Engine Constructor Description DefaultDifferenceManager(Engine engine, java.util.Properties props)
Creates a new DifferenceManager for the given engine. -
Uses of Engine in org.apache.wiki.filters
Methods in org.apache.wiki.filters with parameters of type Engine Modifier and Type Method Description void
CreoleFilter. initialize(Engine engine, java.util.Properties props)
If you override this, you should call super.initialize() first.void
PageEventFilter. initialize(Engine engine, java.util.Properties properties)
Called whenever a new PageFilter is instantiated and reset.void
PingWeblogsComFilter. initialize(Engine engine, java.util.Properties props)
If you override this, you should call super.initialize() first.void
SpamFilter. initialize(Engine engine, java.util.Properties properties)
If you override this, you should call super.initialize() first.Constructors in org.apache.wiki.filters with parameters of type Engine Constructor Description DefaultFilterManager(Engine engine, java.util.Properties props)
Constructs a new FilterManager object. -
Uses of Engine in org.apache.wiki.htmltowiki
Constructors in org.apache.wiki.htmltowiki with parameters of type Engine Constructor Description HtmlStringToWikiTranslator(Engine e)
Create a new translator.XHtmlElementToWikiTranslator(Engine e, org.jdom2.Element base)
Create a new translator using the default config.XHtmlElementToWikiTranslator(Engine e, org.jdom2.Element base, XHtmlToWikiConfig config)
Create a new translator using the specified config. -
Uses of Engine in org.apache.wiki.i18n
Constructors in org.apache.wiki.i18n with parameters of type Engine Constructor Description DefaultInternationalizationManager(Engine engine)
Constructs a new InternationalizationManager. -
Uses of Engine in org.apache.wiki.modules
Fields in org.apache.wiki.modules declared as Engine Modifier and Type Field Description protected Engine
BaseModuleManager. m_engine
Constructors in org.apache.wiki.modules with parameters of type Engine Constructor Description BaseModuleManager(Engine engine)
Constructs the ModuleManager. -
Uses of Engine in org.apache.wiki.pages
Methods in org.apache.wiki.pages that return Engine Modifier and Type Method Description protected Engine
DefaultPageManager. getEngine()
Returns the Engine to which this PageManager belongs to.Constructors in org.apache.wiki.pages with parameters of type Engine Constructor Description DefaultPageManager(Engine engine, java.util.Properties props)
Creates a new PageManager. -
Uses of Engine in org.apache.wiki.parser
Fields in org.apache.wiki.parser declared as Engine Modifier and Type Field Description protected Engine
MarkupParser. m_engine
-
Uses of Engine in org.apache.wiki.plugin
Fields in org.apache.wiki.plugin declared as Engine Modifier and Type Field Description protected Engine
AbstractReferralPlugin. m_engine
Methods in org.apache.wiki.plugin with parameters of type Engine Modifier and Type Method Description java.util.List<Page>
WeblogPlugin. findBlogEntries(Engine engine, java.lang.String baseName, java.util.Date start, java.util.Date end)
Attempts to locate all pages that correspond to the blog entry pattern.java.lang.String
WeblogEntryPlugin. getNewEntryPage(Engine engine, java.lang.String blogName)
Returns a new page name for entries.void
PageViewPlugin. initialize(Engine engine)
Initialize the PageViewPlugin and its singleton.void
PageViewPlugin.PageViewManager. initialize(Engine engine)
Initialize the page view manager.Constructors in org.apache.wiki.plugin with parameters of type Engine Constructor Description DefaultPluginManager(Engine engine, java.util.Properties props)
Create a new PluginManager. -
Uses of Engine in org.apache.wiki.providers
Fields in org.apache.wiki.providers declared as Engine Modifier and Type Field Description protected Engine
AbstractFileProvider. m_engine
Methods in org.apache.wiki.providers with parameters of type Engine Modifier and Type Method Description void
AbstractFileProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
BasicAttachmentProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
CachingAttachmentProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
CachingProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
VersioningFileProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider.void
WikiAttachmentAdapterProvider. initialize(Engine engine, java.util.Properties properties)
Deprecated.Initializes the page provider.void
WikiPageAdapterProvider. initialize(Engine engine, java.util.Properties properties)
Deprecated.Initializes the page provider. -
Uses of Engine in org.apache.wiki.references
Constructors in org.apache.wiki.references with parameters of type Engine Constructor Description DefaultReferenceManager(Engine engine)
Builds a new ReferenceManager. -
Uses of Engine in org.apache.wiki.render
Methods in org.apache.wiki.render with parameters of type Engine Modifier and Type Method Description void
DefaultRenderingManager. initialize(Engine engine, java.util.Properties properties)
Initializes this Engine component. -
Uses of Engine in org.apache.wiki.rss
Methods in org.apache.wiki.rss with parameters of type Engine Modifier and Type Method Description void
DefaultRSSGenerator. initialize(Engine engine, java.util.Properties properties)
Initializes this Engine component.Constructors in org.apache.wiki.rss with parameters of type Engine Constructor Description DefaultRSSGenerator(Engine engine, java.util.Properties properties)
Builds the RSS generator for a given Engine.RSSThread(Engine engine, java.io.File rssFile, int rssInterval)
Create a new RSS thread. -
Uses of Engine in org.apache.wiki.search
Methods in org.apache.wiki.search that return Engine Modifier and Type Method Description protected Engine
LuceneSearchProvider. getEngine()
Returns the handling engine.Methods in org.apache.wiki.search with parameters of type Engine Modifier and Type Method Description void
BasicSearchProvider. initialize(Engine engine, java.util.Properties props)
Initializes the page provider.void
DefaultSearchManager. initialize(Engine engine, java.util.Properties properties)
If you override this, you should call super.initialize() first.void
LuceneSearchProvider. initialize(Engine engine, java.util.Properties props)
Initializes the page provider.Constructors in org.apache.wiki.search with parameters of type Engine Constructor Description DefaultSearchManager(Engine engine, java.util.Properties properties)
Creates a new SearchManager.SearchMatcher(Engine engine, QueryItem[] queries)
Creates a new SearchMatcher. -
Uses of Engine in org.apache.wiki.search.kendra
Methods in org.apache.wiki.search.kendra with parameters of type Engine Modifier and Type Method Description void
KendraSearchProvider. initialize(Engine engine, java.util.Properties properties)
Initializes the page provider. -
Uses of Engine in org.apache.wiki.spi
Methods in org.apache.wiki.spi that return Engine Modifier and Type Method Description Engine
EngineSPIDefaultImpl. find(javax.servlet.ServletContext context, java.util.Properties props)
Locate, or build if necessary, a configuredEngine
instance.Methods in org.apache.wiki.spi with parameters of type Engine Modifier and Type Method Description Attachment
ContentsSPIDefaultImpl. attachment(Engine engine, java.lang.String parentPage, java.lang.String fileName)
Creates a newAttachment
.Context
ContextSPIDefaultImpl. 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.Context
ContextSPIDefaultImpl. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)
Creates a new Context for the given Engine, Command and HttpServletRequest.Context
ContextSPIDefaultImpl. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)
Creates a new Context for the given Engine, Page and HttpServletRequest.Context
ContextSPIDefaultImpl. create(Engine engine, Page page)
Create a new Context for the given Page.Session
SessionSPIDefaultImpl. find(Engine engine, javax.servlet.http.HttpServletRequest request)
Returns the Session object associated with the current HTTP request.Session
SessionSPIDefaultImpl. guest(Engine engine)
Creates a new "guest" session containing a single user Principalorg.apache.wiki.auth.WikiPrincipal#GUEST
, plus the role principalsRole#ALL
andRole#ANONYMOUS
.Page
ContentsSPIDefaultImpl. page(Engine engine, java.lang.String name)
Creates aPage
instance.void
SessionSPIDefaultImpl. 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. -
Uses of Engine in org.apache.wiki.ui
Fields in org.apache.wiki.ui declared as Engine Modifier and Type Field Description protected Engine
WikiServletFilter. m_engine
Methods in org.apache.wiki.ui with parameters of type Engine Modifier and Type Method Description void
DefaultEditorManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component.Constructors in org.apache.wiki.ui with parameters of type Engine Constructor Description DefaultCommandResolver(Engine engine, java.util.Properties properties)
Constructs a CommandResolver for a given Engine.DefaultEditorManager(Engine engine)
DefaultTemplateManager(Engine engine, java.util.Properties properties)
Creates a new TemplateManager.WikiRequestWrapper(Engine engine, javax.servlet.http.HttpServletRequest request)
Constructs a new wrapped request. -
Uses of Engine in org.apache.wiki.ui.admin
Fields in org.apache.wiki.ui.admin declared as Engine Modifier and Type Field Description protected Engine
SimpleAdminBean. m_engine
Provides access to a Engine instance to which this AdminBean belongs to.Methods in org.apache.wiki.ui.admin with parameters of type Engine Modifier and Type Method Description void
AdminBean. initialize(Engine engine)
void
SimpleAdminBean. initialize(Engine engine)
Initialize the AdminBean by setting up a Engine instance internally.Constructors in org.apache.wiki.ui.admin with parameters of type Engine Constructor Description DefaultAdminBeanManager(Engine engine)
-
Uses of Engine in org.apache.wiki.ui.admin.beans
Methods in org.apache.wiki.ui.admin.beans with parameters of type Engine Modifier and Type Method Description void
PlainEditorAdminBean. initialize(Engine engine)
Constructors in org.apache.wiki.ui.admin.beans with parameters of type Engine Constructor Description CoreBean(Engine engine)
FilterBean(Engine engine)
ModuleBean(Engine engine)
PluginBean(Engine engine)
SearchManagerBean(Engine engine)
UserBean(Engine engine)
-
Uses of Engine in org.apache.wiki.url
Fields in org.apache.wiki.url declared as Engine Modifier and Type Field Description protected Engine
DefaultURLConstructor. m_engine
Methods in org.apache.wiki.url with parameters of type Engine Modifier and Type Method Description void
DefaultURLConstructor. initialize(Engine engine, java.util.Properties properties)
Initializes this Engine component.void
ShortURLConstructor. initialize(Engine engine, java.util.Properties properties)
Initializes this Engine component.void
ShortViewURLConstructor. initialize(Engine engine, java.util.Properties properties)
Initializes this Engine component. -
Uses of Engine in org.apache.wiki.workflow
Methods in org.apache.wiki.workflow that return Engine Modifier and Type Method Description protected Engine
DefaultWorkflowManager. getEngine()
Protected helper method that returns the associated EngineMethods in org.apache.wiki.workflow with parameters of type Engine Modifier and Type Method Description static WorkflowBuilder
WorkflowBuilder. getBuilder(Engine engine)
Returns the WorkflowBuilder instance for a Engine.void
DefaultWorkflowManager. initialize(Engine engine, java.util.Properties props)
Initializes this Engine component. -
Uses of Engine in org.apache.wiki.xmlrpc
Fields in org.apache.wiki.xmlrpc declared as Engine Modifier and Type Field Description protected Engine
AbstractRPCHandler. m_engine
-