public interface RuntimeManager
Modifier and Type | Method and Description |
---|---|
RuntimeEvent |
findEventById(java.lang.Long eventId)
Find the event by given id.
|
RuntimeEventsSearchResult |
findEvents(java.lang.String serviceId,
java.lang.String targetId,
java.lang.String eventTypeId,
java.lang.String consumerName,
java.util.Date startDate,
java.util.Date endDate)
Filter the events based on the given criteria.
|
byte[] |
getRequestPayloadData(java.lang.Long eventId)
This method returns the request pay load data.
|
byte[] |
getResponsePayloadData(java.lang.Long eventId)
This method returns the response pay load data.
|
RuntimeEventsSearchResult findEvents(java.lang.String serviceId, java.lang.String targetId, java.lang.String eventTypeId, java.lang.String consumerName, java.util.Date startDate, java.util.Date endDate) throws CLLException
serviceId
- The service id from which the events should be obtainedtargetId
- The target id for the filtereventTypeId
- The type of event to be shownconsumerName
- The name of the consumerstartDate
- The start Date
for the eventsendDate
- The end Date
for the eventsRuntimeEventsSearchResult
which gives the resultsCLLException
- If CLL failed to populate the events based on the given filter criteria.RuntimeEvent findEventById(java.lang.Long eventId) throws CLLException
eventId
- used to identify the eventRuntimeEvent
instance for the given eventIdCLLException
- If CLL failed to find the RuntimeEvent by given id.byte[] getRequestPayloadData(java.lang.Long eventId) throws CLLException
eventId
- used to identify the eventCLLException
- in case of a failure to get the request payloadbyte[] getResponsePayloadData(java.lang.Long eventId) throws CLLException
eventId
- used to identify the eventCLLException
- in case of a failure to get the request payload