Package org.xwiki.extension.job.history
Class ReplayRequest
- java.lang.Object
-
- org.xwiki.job.AbstractRequest
-
- org.xwiki.extension.job.history.ReplayRequest
-
- All Implemented Interfaces:
Serializable
,org.xwiki.job.Request
public class ReplayRequest extends org.xwiki.job.AbstractRequest
The request used for replaying records from the extension job history.- Since:
- 7.1RC1
- Version:
- $Id: c67e5c47c54c264157b224b3bcb26d77e40a5bcf $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReplayRequest()
Default constructor.ReplayRequest(org.xwiki.job.Request request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ExtensionJobHistoryRecord>
getRecords()
void
setRecords(List<ExtensionJobHistoryRecord> records)
Sets the list of history records to replay.-
Methods inherited from class org.xwiki.job.AbstractRequest
containsProperty, equals, getContext, getId, getProperties, getProperty, getProperty, getPropertyNames, hashCode, isInteractive, isRemote, isStatusLogIsolated, isStatusSerialized, isVerbose, removeProperty, setContext, setId, setId, setId, setInteractive, setProperty, setRemote, setStatusLogIsolated, setStatusSerialized, setVerbose
-
-
-
-
Method Detail
-
getRecords
public List<ExtensionJobHistoryRecord> getRecords()
- Returns:
- the list of history records that are being replayed
-
setRecords
public void setRecords(List<ExtensionJobHistoryRecord> records)
Sets the list of history records to replay.- Parameters:
records
- the history records to replay
-
-