| org.apache.catalina.ssi.SSICommand
All known Subclasses: org.apache.catalina.ssi.SSIExec, org.apache.catalina.ssi.SSIPrintenv, org.apache.catalina.ssi.SSIEcho, org.apache.catalina.ssi.SSIInclude, org.apache.catalina.ssi.SSISet, org.apache.catalina.ssi.SSIFsize, org.apache.catalina.ssi.SSIConditional, org.apache.catalina.ssi.SSIFlastmod, org.apache.catalina.ssi.SSIConfig,
SSICommand | public interface SSICommand (Code) | | The interface that all SSI commands ( SSIEcho, SSIInclude, ...) must
implement.
author: Bip Thelin author: Dan Sandberg author: David Becker version: $Revision: 531303 $, $Date: 2007-04-23 02:24:01 +0200 (lun., 23 avr. 2007) $ |
Method Summary | |
public long | process(SSIMediator ssiMediator, String commandName, String[] paramNames, String[] paramValues, PrintWriter writer) Write the output of the command to the writer.
Parameters: ssiMediator - the ssi mediator Parameters: commandName - the name of the actual command ( ie. |
process | public long process(SSIMediator ssiMediator, String commandName, String[] paramNames, String[] paramValues, PrintWriter writer) throws SSIStopProcessingException(Code) | | Write the output of the command to the writer.
Parameters: ssiMediator - the ssi mediator Parameters: commandName - the name of the actual command ( ie. echo ) Parameters: paramNames - The parameter names Parameters: paramValues - The parameter values Parameters: writer - the writer to output to the most current modified date resulting from any SSI commands throws: SSIStopProcessingException - if SSI processing should be aborted |
|
|