Uses of Interface
org.apache.wiki.api.core.Command
Packages that use Command
Package
Description
The chief package of JSPWiki.
JSPWiki's central API.
JSPWiki's SPI package.
Java classes for management of the JSP user interface.
-
Uses of Command in org.apache.wiki
Classes in org.apache.wiki that implement CommandModifier and TypeClassDescriptionclass
Provides state information throughout the processing of a page.Methods in org.apache.wiki that return CommandModifier and TypeMethodDescriptionprotected 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.WikiContext.getCommand()
Returns the Command associated with this WikiContext.WikiContext.targetedCommand
(Object target) Associates a target with the current Command and returns the new targeted Command.Constructors in org.apache.wiki with parameters of type CommandModifierConstructorDescriptionWikiContext
(Engine engine, javax.servlet.http.HttpServletRequest request, Command command) Creates a new WikiContext for the given Engine, Command and HttpServletRequest. -
Uses of Command in org.apache.wiki.api.core
Subinterfaces of Command in org.apache.wiki.api.coreModifier and TypeInterfaceDescriptioninterface
Provides state information throughout the processing of a page.Methods in org.apache.wiki.api.core that return CommandModifier and TypeMethodDescriptionContext.getCommand()
Returns the Command associated with this Context.Command.targetedCommand
(Object target) Creates and returns a targeted Command by combining a target, such as a WikiPage or GroupPrincipal into the existing Command. -
Uses of Command in org.apache.wiki.api.spi
Methods in org.apache.wiki.api.spi with parameters of type CommandModifier and TypeMethodDescriptionCreates a new Context for the given Engine, Command and HttpServletRequest.Creates a new Context for the given Engine, Command and HttpServletRequest. -
Uses of Command in org.apache.wiki.spi
Methods in org.apache.wiki.spi with parameters of type Command -
Uses of Command in org.apache.wiki.ui
Classes in org.apache.wiki.ui that implement CommandModifier and TypeClassDescriptionclass
Abstract, immutable Command implementation class.final class
Defines Commands for viewing, editing and deleting wiki groups.final class
Defines Commands for editing, renaming, and viewing wiki pages.final class
Defines Commands for redirections to off-site special pages.final class
Defines Commands for wiki-wide operations such as creating groups, editing preferences and profiles, and logging in/out.Fields in org.apache.wiki.ui declared as CommandModifier and TypeFieldDescriptionstatic final Command
WikiCommand.ADMIN
static final Command
PageCommand.ATTACH
static final Command
PageCommand.COMMENT
static final Command
PageCommand.CONFLICT
static final Command
WikiCommand.CREATE_GROUP
static final Command
PageCommand.DELETE
static final Command
GroupCommand.DELETE_GROUP
GroupCommand for deleting a group.static final Command
PageCommand.DIFF
static final Command
PageCommand.EDIT
static final Command
GroupCommand.EDIT_GROUP
GroupCommand for editing a group.static final Command
WikiCommand.ERROR
static final Command
WikiCommand.FIND
static final Command
PageCommand.INFO
static final Command
WikiCommand.INSTALL
static final Command
WikiCommand.LOGIN
static final Command
WikiCommand.LOGOUT
static final Command
WikiCommand.MESSAGE
static final Command
PageCommand.NONE
static final Command
PageCommand.OTHER
static final Command
WikiCommand.PREFS
static final Command
PageCommand.PREVIEW
static final Command
RedirectCommand.REDIRECT
static final Command
PageCommand.RENAME
static final Command
PageCommand.RSS
static final Command
PageCommand.UPLOAD
static final Command
PageCommand.VIEW
static final Command
GroupCommand.VIEW_GROUP
GroupCommand for viewing a group.static final Command
WikiCommand.WORKFLOW
Methods in org.apache.wiki.ui that return CommandModifier and TypeMethodDescriptionprotected Command
DefaultCommandResolver.extractCommandFromPath
(javax.servlet.http.HttpServletRequest request) Extracts a Command based on the JSP path of an HTTP request.static Command
CommandResolver.findCommand
(String context) Attempts to locate a wiki command for a supplied request context.CommandResolver.findCommand
(javax.servlet.http.HttpServletRequest request, String defaultContext) Attempts to locate a Command for a supplied wiki context and HTTP request, incorporating the correct WikiPage into the command if required.DefaultCommandResolver.findCommand
(javax.servlet.http.HttpServletRequest request, String defaultContext) Attempts to locate a Command for a supplied wiki context and HTTP request, incorporating the correct WikiPage into the command if required.static Command[]
AllCommands.get()
Returns a defensively-created array of all static Commands.abstract Command
AbstractCommand.targetedCommand
(Object target) GroupCommand.targetedCommand
(Object target) Creates and returns a targeted Command by combining a GroupPrincipal with this Command.PageCommand.targetedCommand
(Object target) Creates and returns a targeted Command by combining a WikiPage with this Command.RedirectCommand.targetedCommand
(Object target) Creates and returns a targeted Command by combining a URL (as String) with this Command.WikiCommand.targetedCommand
(Object target) Creates and returns a targeted Command by combining a wiki (a String) with this Command.