Class SSIConditional
java.lang.Object
org.apache.catalina.ssi.SSIConditional
- All Implemented Interfaces:
 SSICommand
SSI command that handles all conditional directives.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionlongprocess(SSIMediator ssiMediator, String commandName, String[] paramNames, String[] paramValues, PrintWriter writer) Write the output of the command to the writer. 
- 
Constructor Details
- 
SSIConditional
public SSIConditional() 
 - 
 - 
Method Details
- 
process
public long process(SSIMediator ssiMediator, String commandName, String[] paramNames, String[] paramValues, PrintWriter writer) throws SSIStopProcessingException Description copied from interface:SSICommandWrite the output of the command to the writer.- Specified by:
 processin interfaceSSICommand- Parameters:
 ssiMediator- the ssi mediatorcommandName- the name of the actual command ( ie. echo )paramNames- The parameter namesparamValues- The parameter valueswriter- the writer to output to- Returns:
 - the most current modified date resulting from any SSI commands
 - Throws:
 SSIStopProcessingException- if SSI processing should be aborted
 
 -