Interface ChangeInfoParser
-
- All Known Implementing Classes:
DefaultChangeInfoParser
public interface ChangeInfoParserA parser that convertsItemChangeDTO.getInfo()string into a structured format.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<ChangeInfo>parse(java.lang.String info)Parses info associated with an item change.
-
-
-
Method Detail
-
parse
java.util.Optional<ChangeInfo> parse(java.lang.String info)
Parses info associated with an item change.- Parameters:
info- a string calculated from theStreamConfigurationModel.getInfoExpression()- Returns:
- an optional containing the structured presentation of the parsed info; or
Optional.empty(), if the info could not be parsed.
-
-