Interface ContentHandler<K,R>
-
- All Known Implementing Classes:
CopyBytesHandler
,RedmineErrorHandler
public interface ContentHandler<K,R>
Redmine content handler.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
processContent(K content)
Consumes content of a specified type and returns a specified result.
-
-
-
Method Detail
-
processContent
R processContent(K content) throws RedmineException
Consumes content of a specified type and returns a specified result.- Parameters:
content
- content to process.- Returns:
- processed content.
- Throws:
RedmineException
- if something goes wrong.
-
-