Package com.caplin.streamlink
Interface NewsEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDateTime()
Returns the date/time associated with this headline update.java.util.Map<java.lang.String,java.lang.String>
getFields()
Returns all field/value pairs that were updated in this update.java.lang.String
getHeadline()
Returns the headline for this update.java.lang.String
getStoryCode()
Returns the story code associated with this update.-
Methods inherited from interface com.caplin.streamlink.DataEvent
getSubject, isImage
-
-
-
-
Method Detail
-
getHeadline
java.lang.String getHeadline()
Returns the headline for this update.
- Returns:
- The headline.
-
getStoryCode
java.lang.String getStoryCode()
Returns the story code associated with this update.
The value of the code can be used to construct a news story subject to obtain the full text of the news item.
- Returns:
- The story code.
-
getDateTime
java.lang.String getDateTime()
Returns the date/time associated with this headline update.
The format of the date/time string is dependent on the implementation of the Integration Adapter that supplied the new headline. Generally it will be in a displayable format.
- Returns:
- The date/time stamp.
-
getFields
java.util.Map<java.lang.String,java.lang.String> getFields()
Returns all field/value pairs that were updated in this update.
This data structure allows access to any additional information associated with the news headline update which aren't available directly.
- Returns:
- A collection of field/value pairs.
-
-