Package com.atlassian.confluence.mail
Interface MailContentProcessor
-
- All Known Implementing Classes:
BotocssMailContentProcessor,DefaultMailContentProcessor,XsltMailContentProcessor
public interface MailContentProcessorAn interface defining a component that will process email content.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringprocess(String input)Take the supplied input data and process it in some fashion, returning the result.
-
-
-
Method Detail
-
process
String process(String input)
Take the supplied input data and process it in some fashion, returning the result. If the processing fails then input should be returned as the result.- Parameters:
input- the content to be processed.- Returns:
- the processed version of the content or the same content if processing failed.
-
-