| java.lang.Object org.w3c.jigsaw.ssi.commands.CommandRegistry
All known Subclasses: org.w3c.jigsaw.ssi.commands.BasicCommandRegistry,
initVariables | abstract public Dictionary initVariables(SSIFrame ssiframe, Request request, Dictionary variables)(Code) | | Initialize execution variables. Called before any of the SSI
commands in the documents are executed. This method augments
or modifies the dictionary given as argument. If the variable
dictionary is null, it may create a new one and return it.
SSIFrame will always call this method with variables set to
null. Its existence is mainly to facilitate the subclassing of
an existing registry.
Parameters: request - the HTTP request Parameters: variables - other variables previously defined the modified/augmented set of variables |
lookupCommand | abstract public Command lookupCommand(String name)(Code) | | Look up a command from its name.
(Should never return null, and have a pseudo-command
to handle non-existent commands).
Parameters: name - the name the command |
|
|