public interface ItemParserIf
Modifier and Type | Method and Description |
---|---|
ItemResponse |
parse(ItemResponse parseableItem)
The ItemResponse should have the raw device output in getCollectedData(), you should perform
your parsing logic on that data then store the result in itemResponse's setParsedData() and
return the item response.
|
ItemResponse parse(ItemResponse parseableItem) throws java.lang.Exception
parseableItem
- Should contain the raw device output and then the parsed result.java.lang.Exception