Package com.strongdm.api
Class ReplayChunk
java.lang.Object
com.strongdm.api.ReplayChunk
A ReplayChunk represents a single "chunk" of data from the query replay.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
getData()
The raw data of the ReplayChunk.The list of events of the ReplayChunk.If the data is encrypted, this contains the encrypted symmetric keyvoid
setData
(byte[] in) The raw data of the ReplayChunk.void
The list of events of the ReplayChunk.void
If the data is encrypted, this contains the encrypted symmetric key
-
Constructor Details
-
ReplayChunk
public ReplayChunk()
-
-
Method Details
-
getData
public byte[] getData()The raw data of the ReplayChunk. The data is encrypted if the associated Query is encrypted. -
setData
public void setData(byte[] in) The raw data of the ReplayChunk. The data is encrypted if the associated Query is encrypted. -
getEvents
The list of events of the ReplayChunk. If the Query is encrypted, this field is always empty and the events can be obtained by decrypting the data using the QueryKey returned with the Query. -
setEvents
The list of events of the ReplayChunk. If the Query is encrypted, this field is always empty and the events can be obtained by decrypting the data using the QueryKey returned with the Query. -
getSymmetricKey
If the data is encrypted, this contains the encrypted symmetric key -
setSymmetricKey
If the data is encrypted, this contains the encrypted symmetric key
-