| org.tigris.scarab.services.email.EmailService
All known Subclasses: org.tigris.scarab.services.email.VelocityEmailService,
Method Summary | |
String | handleRequest(Context context, String filename) Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. | String | handleRequest(Context context, String template, String charset, String encoding) Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. Parameters: charset - The character set to use when writing the result. Parameters: encoding - The encoding to use when merging context andtemplate. | void | handleRequest(Context context, String filename, OutputStream out) Process the request and fill in the template using the values
set in context . | void | handleRequest(Context context, String filename, OutputStream out, String charset, String encoding) Process the request and fill in the template using the values
set in context . | void | handleRequest(Context context, String filename, Writer writer) Process the request and fill in the template using the values
set in context . | void | handleRequest(Context context, String filename, Writer writer, String encoding) Process the request and fill in the template using the values
set in context . |
handleRequest | String handleRequest(Context context, String filename) throws Exception(Code) | | Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. The processed template. exception: Exception - , a generic exception. |
handleRequest | String handleRequest(Context context, String template, String charset, String encoding) throws Exception(Code) | | Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. Parameters: charset - The character set to use when writing the result. Parameters: encoding - The encoding to use when merging context andtemplate. The processed template. exception: Exception - , a generic exception. |
handleRequest | void handleRequest(Context context, String filename, OutputStream out) throws ServiceException(Code) | | Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. Parameters: out - The stream to which we will write the processedtemplate as a String. throws: ServiceException - Any exception trown while processing will bewrapped into a ServiceException and rethrown. |
handleRequest | void handleRequest(Context context, String filename, OutputStream out, String charset, String encoding) throws ServiceException(Code) | | Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. Parameters: out - The stream to which we will write the processedtemplate as a String. Parameters: charset - The character set to use when writing the result. Parameters: encoding - The encoding to use when merging context andtemplate. throws: ServiceException - Any exception trown while processing will bewrapped into a ServiceException and rethrown. |
handleRequest | void handleRequest(Context context, String filename, Writer writer) throws ServiceException(Code) | | Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. Parameters: writer - The writer to which we will write the processed template. throws: ServiceException - Any exception trown while processing will bewrapped into a ServiceException and rethrown. |
handleRequest | void handleRequest(Context context, String filename, Writer writer, String encoding) throws ServiceException(Code) | | Process the request and fill in the template using the values
set in context .
Parameters: context - A context to use when evaluating the specifiedtemplate. Parameters: filename - The file name of the template. Parameters: writer - The writer to which we will write the processed template. Parameters: encoding - The encoding to use when merging context andtemplate. throws: ServiceException - Any exception trown while processing will bewrapped into a ServiceException and rethrown. |
|
|