Interface WysiwygContentTransformerProcess<T>
-
- Type Parameters:
T
- the type of the result.
- All Known Implementing Classes:
MailContentProcess
public interface WysiwygContentTransformerProcess<T>
Processes operation on WYSIWYG content and returning a typed result. Must be used withWysiwygContentTransformer
.- Author:
- Yohann Chastagnier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
execute(String wysiwygContent)
Executes the process on the given WYSIWYG content.
-
-
-
Method Detail
-
execute
T execute(String wysiwygContent) throws org.silverpeas.kernel.SilverpeasException
Executes the process on the given WYSIWYG content.- Parameters:
wysiwygContent
- the WYSIWYG content source.- Returns:
- the typed result of the WYSIWYG transformation process.
- Throws:
org.silverpeas.kernel.SilverpeasException
-
-