| javax.servlet.ServletOutputStream org.jasig.portal.utils.SubstitutionServletOutputStream
SubstitutionServletOutputStream | public class SubstitutionServletOutputStream extends ServletOutputStream (Code) | | A filter presenting a ServletOutputStream that performs
word substitution (search and replace) on the fly.
7/25/05 - UP-1180 - dmindler@rutgers.edu
Modified to make use of optimized SubstitutionIntegerFilter
author: Peter Kharchenko pkharchenko@interactivebusiness.com" version: $Revision: 36690 $ |
Method Summary | |
public void | close() | public void | flush() | public void | write(int i) |
SubstitutionServletOutputStream | public SubstitutionServletOutputStream(ServletOutputStream out, byte[] target, byte[] substitute)(Code) | | Creates a new SubstitutionServletOutputStream instance.
Parameters: out - a true ServletOutputStream value where processed stream should be directed Parameters: target - a byte[] value of a target to be replaced Parameters: substitute - a byte[] value with which the target will be replaced |
SubstitutionServletOutputStream | public SubstitutionServletOutputStream(ServletOutputStream out, byte[] target, byte[] substitute, int bufferSize)(Code) | | Creates a new SubstitutionServletOutputStream instance.
Parameters: out - a true ServletOutputStream value where processed stream should be directed Parameters: target - a byte[] value of a target to be replaced Parameters: substitute - a byte[] value with which the target will be replaced Parameters: bufferSize - a buffer size |
|
|