|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WikiEngine | |
---|---|
org.apache.wiki | The chief package of JSPWiki. |
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.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.diff | |
org.apache.wiki.event | |
org.apache.wiki.filters | Provides page and content filtering functionality for JSPWiki. |
org.apache.wiki.i18n | |
org.apache.wiki.modules | |
org.apache.wiki.parser | |
org.apache.wiki.plugin | Provides plugins to the JSPWiki. |
org.apache.wiki.providers | Provides storage for JSPWiki. |
org.apache.wiki.render | |
org.apache.wiki.rss | |
org.apache.wiki.search | Provides the JSPWiki search functionality. |
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 WikiEngine in org.apache.wiki |
---|
Methods in org.apache.wiki that return WikiEngine | |
---|---|
WikiEngine |
WikiContext.getEngine()
Returns the handling engine. |
WikiEngine |
WikiBackgroundThread.getEngine()
Returns the WikiEngine that created this background thread. |
WikiEngine |
PageManager.getEngine()
Returns the WikiEngine to which this PageManager belongs to. |
static WikiEngine |
WikiEngine.getInstance(javax.servlet.ServletConfig config)
Gets a WikiEngine related to this servlet. |
static WikiEngine |
WikiEngine.getInstance(javax.servlet.ServletConfig config,
Properties props)
Gets a WikiEngine related to the servlet. |
static WikiEngine |
WikiEngine.getInstance(javax.servlet.ServletContext context,
Properties props)
Gets a WikiEngine related to the servlet. |
Methods in org.apache.wiki with parameters of type WikiEngine | |
---|---|
protected static Command |
WikiContext.findCommand(WikiEngine engine,
javax.servlet.http.HttpServletRequest request,
WikiPage page)
Looks up and returns a PageCommand based on a supplied WikiPage and HTTP request. |
static WatchDog |
WatchDog.getCurrentWatchDog(WikiEngine engine)
Returns the current watchdog for the current thread. |
static WikiSession |
WikiSession.getWikiSession(WikiEngine engine,
javax.servlet.http.HttpServletRequest request)
Static factory method that returns the WikiSession object associated with the current HTTP request. |
static WikiSession |
WikiSession.guestSession(WikiEngine engine)
Static factory method that creates a new "guest" session containing a single user Principal WikiPrincipal.GUEST ,
plus the role principals Role.ALL and
Role.ANONYMOUS . |
void |
WikiProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
static void |
WikiSession.removeWikiSession(WikiEngine 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(WikiEngine engine)
Returns the total number of active wiki sessions for a particular wiki. |
static Principal[] |
WikiSession.userPrincipals(WikiEngine engine)
Returns Principals representing the current users known to a particular wiki. |
Constructors in org.apache.wiki with parameters of type WikiEngine | |
---|---|
PageManager(WikiEngine engine,
Properties props)
Creates a new PageManager. |
|
ReferenceManager(WikiEngine engine)
Builds a new ReferenceManager. |
|
WatchDog(WikiEngine engine,
Thread thread)
Creates a new WatchDog for a Thread. |
|
WatchDog(WikiEngine engine,
Watchable watch)
Creates a new WatchDog for a Watchable. |
|
WikiBackgroundThread(WikiEngine 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(WikiEngine engine,
javax.servlet.http.HttpServletRequest request,
Command command)
Creates a new WikiContext for the given WikiEngine, Command and HttpServletRequest. |
|
WikiContext(WikiEngine engine,
javax.servlet.http.HttpServletRequest request,
WikiPage page)
Creates a new WikiContext for the given WikiEngine, WikiPage and HttpServletRequest. |
|
WikiContext(WikiEngine engine,
WikiPage page)
Create a new WikiContext for the given WikiPage. |
|
WikiPage(WikiEngine engine,
String name)
Create a new WikiPage using a given engine and name. |
Uses of WikiEngine in org.apache.wiki.api.filters |
---|
Fields in org.apache.wiki.api.filters declared as WikiEngine | |
---|---|
protected WikiEngine |
BasicPageFilter.m_engine
|
Methods in org.apache.wiki.api.filters with parameters of type WikiEngine | |
---|---|
void |
PageFilter.destroy(WikiEngine engine)
Called for every filter, e.g. on wiki engine shutdown. |
void |
BasicPageFilter.destroy(WikiEngine engine)
Called for every filter, e.g. on wiki engine shutdown. |
void |
PageFilter.initialize(WikiEngine engine,
Properties properties)
Is called whenever the a new PageFilter is instantiated and reset. |
void |
BasicPageFilter.initialize(WikiEngine engine,
Properties properties)
If you override this, you should call super.initialize() first. |
Uses of WikiEngine in org.apache.wiki.api.plugin |
---|
Methods in org.apache.wiki.api.plugin with parameters of type WikiEngine | |
---|---|
void |
InitializablePlugin.initialize(WikiEngine engine)
Called whenever the plugin is being instantiated for the first time. |
Uses of WikiEngine in org.apache.wiki.attachment |
---|
Constructors in org.apache.wiki.attachment with parameters of type WikiEngine | |
---|---|
Attachment(WikiEngine engine,
String parentPage,
String fileName)
Creates a new attachment. |
|
AttachmentManager(WikiEngine engine,
Properties props)
Creates a new AttachmentManager. |
|
DynamicAttachment(WikiEngine engine,
String parentPage,
String fileName,
DynamicAttachmentProvider provider)
Creates a DynamicAttachment. |
Uses of WikiEngine in org.apache.wiki.auth |
---|
Methods in org.apache.wiki.auth with parameters of type WikiEngine | |
---|---|
protected static URL |
AuthenticationManager.findConfigFile(WikiEngine engine,
String name)
Looks up and obtains a configuration file inside the WEB-INF folder of a wiki webapp. |
static SessionMonitor |
SessionMonitor.getInstance(WikiEngine engine)
Returns the instance of the SessionMonitor for this wiki. |
void |
UserManager.initialize(WikiEngine engine,
Properties props)
Initializes the engine for its nefarious purposes. |
void |
UserManager.DummyUserDatabase.initialize(WikiEngine engine,
Properties props)
No-op. |
void |
Authorizer.initialize(WikiEngine engine,
Properties props)
Initializes the authorizer. |
void |
AuthorizationManager.initialize(WikiEngine engine,
Properties properties)
Initializes AuthorizationManager with an engine and set of properties. |
void |
AuthenticationManager.initialize(WikiEngine engine,
Properties props)
Creates an AuthenticationManager instance for the given WikiEngine and the specified set of properties. |
Constructors in org.apache.wiki.auth with parameters of type WikiEngine | |
---|---|
SecurityVerifier(WikiEngine engine,
WikiSession session)
Constructs a new SecurityVerifier for a supplied WikiEngine and WikiSession. |
|
UserManager.SaveUserProfileTask(WikiEngine engine)
Deprecated. will be removed in 2.10 scope. Consider using #SaveUserProfileTask(WikiEngine, Locale) instead |
|
UserManager.SaveUserProfileTask(WikiEngine engine,
Locale loc)
|
Uses of WikiEngine in org.apache.wiki.auth.acl |
---|
Methods in org.apache.wiki.auth.acl with parameters of type WikiEngine | |
---|---|
void |
DefaultAclManager.initialize(WikiEngine engine,
Properties props)
Initializes the AclManager with a supplied wiki engine and properties. |
void |
AclManager.initialize(WikiEngine engine,
Properties props)
Initializes the AclManager with a supplied wiki engine and properties. |
Uses of WikiEngine in org.apache.wiki.auth.authorize |
---|
Fields in org.apache.wiki.auth.authorize declared as WikiEngine | |
---|---|
protected WikiEngine |
WebContainerAuthorizer.m_engine
|
protected WikiEngine |
GroupManager.m_engine
|
Methods in org.apache.wiki.auth.authorize with parameters of type WikiEngine | |
---|---|
void |
XMLGroupDatabase.initialize(WikiEngine engine,
Properties props)
Initializes the group database based on values from a Properties object. |
void |
WebContainerAuthorizer.initialize(WikiEngine engine,
Properties props)
Initializes the authorizer for. |
void |
JDBCGroupDatabase.initialize(WikiEngine engine,
Properties props)
Initializes the group database based on values from a Properties object. |
void |
GroupManager.initialize(WikiEngine engine,
Properties props)
Initializes the group cache by initializing the group database and obtaining a list of all of the groups it stores. |
void |
GroupDatabase.initialize(WikiEngine engine,
Properties props)
Initializes the group database based on values from a Properties object. |
Uses of WikiEngine in org.apache.wiki.auth.login |
---|
Methods in org.apache.wiki.auth.login that return WikiEngine | |
---|---|
WikiEngine |
WikiEngineCallback.getEngine()
Returns the engine. |
Methods in org.apache.wiki.auth.login with parameters of type WikiEngine | |
---|---|
static void |
CookieAuthenticationLoginModule.clearLoginCookie(WikiEngine 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(WikiEngine engine)
Sets the engine object. |
static void |
CookieAuthenticationLoginModule.setLoginCookie(WikiEngine engine,
javax.servlet.http.HttpServletResponse response,
String username)
Sets a login cookie based on properties set by the user. |
Constructors in org.apache.wiki.auth.login with parameters of type WikiEngine | |
---|---|
WebContainerCallbackHandler(WikiEngine engine,
javax.servlet.http.HttpServletRequest request)
Create a new handler. |
|
WikiCallbackHandler(WikiEngine engine,
javax.servlet.http.HttpServletRequest request,
String username,
String password)
Create a new callback handler. |
Uses of WikiEngine in org.apache.wiki.auth.user |
---|
Methods in org.apache.wiki.auth.user with parameters of type WikiEngine | |
---|---|
void |
XMLUserDatabase.initialize(WikiEngine engine,
Properties props)
Initializes the user database based on values from a Properties object. |
void |
UserDatabase.initialize(WikiEngine engine,
Properties props)
Initializes the user database based on values from a Properties object. |
void |
JDBCUserDatabase.initialize(WikiEngine engine,
Properties props)
|
abstract void |
AbstractUserDatabase.initialize(WikiEngine engine,
Properties props)
Initializes the user database based on values from a Properties object. |
Uses of WikiEngine in org.apache.wiki.diff |
---|
Methods in org.apache.wiki.diff with parameters of type WikiEngine | |
---|---|
void |
TraditionalDiffProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
ExternalDiffProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
DiffProvider.NullDiffProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
ContextualDiffProvider.initialize(WikiEngine engine,
Properties properties)
|
Constructors in org.apache.wiki.diff with parameters of type WikiEngine | |
---|---|
DifferenceManager(WikiEngine engine,
Properties props)
Creates a new DifferenceManager for the given engine. |
Uses of WikiEngine in org.apache.wiki.event |
---|
Methods in org.apache.wiki.event that return WikiEngine | |
---|---|
WikiEngine |
WikiEngineEvent.getEngine()
Returns the WikiEngine that spawned this event. |
WikiEngine |
WikiEngineEvent.getWikiEngine()
Deprecated. use WikiEngineEvent.getEngine() instead. |
Uses of WikiEngine in org.apache.wiki.filters |
---|
Methods in org.apache.wiki.filters with parameters of type WikiEngine | |
---|---|
void |
SpamFilter.initialize(WikiEngine engine,
Properties properties)
If you override this, you should call super.initialize() first. |
void |
PingWeblogsComFilter.initialize(WikiEngine engine,
Properties props)
If you override this, you should call super.initialize() first. |
void |
CreoleFilter.initialize(WikiEngine engine,
Properties props)
If you override this, you should call super.initialize() first. |
Constructors in org.apache.wiki.filters with parameters of type WikiEngine | |
---|---|
DefaultFilterManager(WikiEngine engine,
Properties props)
Constructs a new FilterManager object. |
Uses of WikiEngine in org.apache.wiki.i18n |
---|
Constructors in org.apache.wiki.i18n with parameters of type WikiEngine | |
---|---|
InternationalizationManager(WikiEngine engine)
Constructs a new InternationalizationManager. |
Uses of WikiEngine in org.apache.wiki.modules |
---|
Fields in org.apache.wiki.modules declared as WikiEngine | |
---|---|
protected WikiEngine |
ModuleManager.m_engine
|
Constructors in org.apache.wiki.modules with parameters of type WikiEngine | |
---|---|
ModuleManager(WikiEngine engine)
Constructs the ModuleManager. |
Uses of WikiEngine in org.apache.wiki.parser |
---|
Fields in org.apache.wiki.parser declared as WikiEngine | |
---|---|
protected WikiEngine |
MarkupParser.m_engine
|
Uses of WikiEngine in org.apache.wiki.plugin |
---|
Fields in org.apache.wiki.plugin declared as WikiEngine | |
---|---|
protected WikiEngine |
AbstractReferralPlugin.m_engine
|
Methods in org.apache.wiki.plugin with parameters of type WikiEngine | |
---|---|
String |
WeblogEntryPlugin.getNewEntryPage(WikiEngine engine,
String blogName)
Returns a new page name for entries. |
void |
PageViewPlugin.initialize(WikiEngine engine)
Initialize the PageViewPlugin and its singleton. |
void |
PageViewPlugin.PageViewManager.initialize(WikiEngine engine)
Initialize the page view manager. |
protected void |
DefaultPluginManager.WikiPluginInfo.initializePlugin(WikiEngine engine,
List<String> searchPath,
List<String> externalJars)
Initializes a plugin, if it has not yet been initialized. |
Constructors in org.apache.wiki.plugin with parameters of type WikiEngine | |
---|---|
DefaultPluginManager(WikiEngine engine,
Properties props)
Create a new PluginManager. |
Uses of WikiEngine in org.apache.wiki.providers |
---|
Fields in org.apache.wiki.providers declared as WikiEngine | |
---|---|
protected WikiEngine |
AbstractFileProvider.m_engine
|
Methods in org.apache.wiki.providers with parameters of type WikiEngine | |
---|---|
void |
VersioningFileProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
CachingProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
CachingAttachmentProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
BasicAttachmentProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
void |
AbstractFileProvider.initialize(WikiEngine engine,
Properties properties)
Initializes the page provider. |
Uses of WikiEngine in org.apache.wiki.render |
---|
Methods in org.apache.wiki.render with parameters of type WikiEngine | |
---|---|
void |
RenderingManager.initialize(WikiEngine engine,
Properties properties)
Initializes the RenderingManager. |
Uses of WikiEngine in org.apache.wiki.rss |
---|
Constructors in org.apache.wiki.rss with parameters of type WikiEngine | |
---|---|
RSSGenerator(WikiEngine engine,
Properties properties)
Initialize the RSS generator for a given WikiEngine. |
|
RSSThread(WikiEngine engine,
File rssFile,
int rssInterval)
Create a new RSS thread. |
Uses of WikiEngine in org.apache.wiki.search |
---|
Methods in org.apache.wiki.search that return WikiEngine | |
---|---|
protected WikiEngine |
LuceneSearchProvider.getEngine()
Returns the handling engine. |
Methods in org.apache.wiki.search with parameters of type WikiEngine | |
---|---|
void |
SearchManager.initialize(WikiEngine engine,
Properties properties)
This particular method starts off indexing and all sorts of various activities, so you need to run this last, after things are done. |
void |
LuceneSearchProvider.initialize(WikiEngine engine,
Properties props)
Initializes the page provider. |
void |
BasicSearchProvider.initialize(WikiEngine engine,
Properties props)
Initializes the page provider. |
Constructors in org.apache.wiki.search with parameters of type WikiEngine | |
---|---|
SearchManager(WikiEngine engine,
Properties properties)
Creates a new SearchManager. |
|
SearchMatcher(WikiEngine engine,
QueryItem[] queries)
Creates a new SearchMatcher. |
Uses of WikiEngine in org.apache.wiki.ui |
---|
Fields in org.apache.wiki.ui declared as WikiEngine | |
---|---|
protected WikiEngine |
WikiServletFilter.m_engine
|
Constructors in org.apache.wiki.ui with parameters of type WikiEngine | |
---|---|
CommandResolver(WikiEngine engine,
Properties properties)
Constructs a CommandResolver for a given WikiEngine. |
|
EditorManager(WikiEngine engine)
|
|
TemplateManager(WikiEngine engine,
Properties properties)
Creates a new TemplateManager. |
|
WikiRequestWrapper(WikiEngine engine,
javax.servlet.http.HttpServletRequest request)
Constructs a new wrapped request. |
Uses of WikiEngine in org.apache.wiki.ui.admin |
---|
Fields in org.apache.wiki.ui.admin declared as WikiEngine | |
---|---|
protected WikiEngine |
SimpleAdminBean.m_engine
Provides access to a WikiEngine instance to which this AdminBean belongs to. |
Methods in org.apache.wiki.ui.admin with parameters of type WikiEngine | |
---|---|
void |
SimpleAdminBean.initialize(WikiEngine engine)
Initialize the AdminBean by setting up a WikiEngine instance internally. |
void |
AdminBean.initialize(WikiEngine engine)
|
Constructors in org.apache.wiki.ui.admin with parameters of type WikiEngine | |
---|---|
DefaultAdminBeanManager(WikiEngine engine)
|
Uses of WikiEngine in org.apache.wiki.ui.admin.beans |
---|
Methods in org.apache.wiki.ui.admin.beans with parameters of type WikiEngine | |
---|---|
void |
PlainEditorAdminBean.initialize(WikiEngine engine)
|
Constructors in org.apache.wiki.ui.admin.beans with parameters of type WikiEngine | |
---|---|
CoreBean(WikiEngine engine)
|
|
PluginBean(WikiEngine engine)
|
|
SearchManagerBean(WikiEngine engine)
|
|
UserBean(WikiEngine engine)
|
Uses of WikiEngine in org.apache.wiki.url |
---|
Fields in org.apache.wiki.url declared as WikiEngine | |
---|---|
protected WikiEngine |
DefaultURLConstructor.m_engine
|
Methods in org.apache.wiki.url with parameters of type WikiEngine | |
---|---|
void |
URLConstructor.initialize(WikiEngine engine,
Properties properties)
Initializes. |
void |
ShortViewURLConstructor.initialize(WikiEngine engine,
Properties properties)
Initializes. |
void |
ShortURLConstructor.initialize(WikiEngine engine,
Properties properties)
Initializes. |
void |
DefaultURLConstructor.initialize(WikiEngine engine,
Properties properties)
Initializes. |
Uses of WikiEngine in org.apache.wiki.workflow |
---|
Methods in org.apache.wiki.workflow that return WikiEngine | |
---|---|
protected WikiEngine |
WorkflowManager.getEngine()
Protected helper method that returns the associated WikiEngine |
Methods in org.apache.wiki.workflow with parameters of type WikiEngine | |
---|---|
static WorkflowBuilder |
WorkflowBuilder.getBuilder(WikiEngine engine)
Returns the WorkflowBuilder instance for a WikiEngine. |
void |
WorkflowManager.initialize(WikiEngine engine,
Properties props)
Initializes the WorkflowManager using a specfied WikiEngine and properties. |
Uses of WikiEngine in org.apache.wiki.xmlrpc |
---|
Fields in org.apache.wiki.xmlrpc declared as WikiEngine | |
---|---|
protected WikiEngine |
AbstractRPCHandler.m_engine
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |