Package org.teamapps.dto
Class UiTable.UpdateDataCommand
- java.lang.Object
-
- org.teamapps.dto.UiTable.UpdateDataCommand
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringcomponentIdprotected java.util.List<UiTableClientRecord>newRecordsprotected java.util.List<java.lang.Integer>recordIdsprotected intstartIndexprotected inttotalNumberOfRecords
-
Constructor Summary
Constructors Constructor Description UpdateDataCommand()Deprecated.Only for Jackson deserialization.UpdateDataCommand(java.lang.String componentId, int startIndex, java.util.List<java.lang.Integer> recordIds, java.util.List<UiTableClientRecord> newRecords, int totalNumberOfRecords)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetComponentId()java.util.List<UiTableClientRecord>getNewRecords()java.util.List<java.lang.Integer>getRecordIds()intgetStartIndex()intgetTotalNumberOfRecords()java.lang.StringtoString()
-
-
-
Field Detail
-
componentId
protected java.lang.String componentId
-
startIndex
protected int startIndex
-
recordIds
protected java.util.List<java.lang.Integer> recordIds
-
newRecords
protected java.util.List<UiTableClientRecord> newRecords
-
totalNumberOfRecords
protected int totalNumberOfRecords
-
-
Constructor Detail
-
UpdateDataCommand
@Deprecated public UpdateDataCommand()
Deprecated.Only for Jackson deserialization. Use the other constructor instead.
-
UpdateDataCommand
public UpdateDataCommand(java.lang.String componentId, int startIndex, java.util.List<java.lang.Integer> recordIds, java.util.List<UiTableClientRecord> newRecords, int totalNumberOfRecords)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getComponentId
public java.lang.String getComponentId()
- Specified by:
getComponentIdin interfaceUiCommand<java.lang.Void>
-
getStartIndex
public int getStartIndex()
-
getRecordIds
public java.util.List<java.lang.Integer> getRecordIds()
-
getNewRecords
public java.util.List<UiTableClientRecord> getNewRecords()
-
getTotalNumberOfRecords
public int getTotalNumberOfRecords()
-
-