Package org.teamapps.dto
Class UiTable.AddDataCommand
- java.lang.Object
-
- org.teamapps.dto.UiTable.AddDataCommand
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanclearTableCacheprotected java.lang.StringcomponentIdprotected java.util.List<UiTableClientRecord>dataprotected UiSortDirectionsortDirectionprotected java.lang.StringsortFieldprotected intstartRowIndexprotected inttotalNumberOfRecords
-
Constructor Summary
Constructors Constructor Description AddDataCommand()Deprecated.Only for Jackson deserialization.AddDataCommand(java.lang.String componentId, int startRowIndex, java.util.List<UiTableClientRecord> data, int totalNumberOfRecords, java.lang.String sortField, UiSortDirection sortDirection, boolean clearTableCache)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetClearTableCache()java.lang.StringgetComponentId()java.util.List<UiTableClientRecord>getData()UiSortDirectiongetSortDirection()java.lang.StringgetSortField()intgetStartRowIndex()intgetTotalNumberOfRecords()java.lang.StringtoString()
-
-
-
Field Detail
-
componentId
protected java.lang.String componentId
-
startRowIndex
protected int startRowIndex
-
data
protected java.util.List<UiTableClientRecord> data
-
totalNumberOfRecords
protected int totalNumberOfRecords
-
sortField
protected java.lang.String sortField
-
sortDirection
protected UiSortDirection sortDirection
-
clearTableCache
protected boolean clearTableCache
-
-
Constructor Detail
-
AddDataCommand
@Deprecated public AddDataCommand()
Deprecated.Only for Jackson deserialization. Use the other constructor instead.
-
AddDataCommand
public AddDataCommand(java.lang.String componentId, int startRowIndex, java.util.List<UiTableClientRecord> data, int totalNumberOfRecords, java.lang.String sortField, UiSortDirection sortDirection, boolean clearTableCache)
-
-
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>
-
getStartRowIndex
public int getStartRowIndex()
-
getData
public java.util.List<UiTableClientRecord> getData()
-
getTotalNumberOfRecords
public int getTotalNumberOfRecords()
-
getSortField
public java.lang.String getSortField()
-
getSortDirection
public UiSortDirection getSortDirection()
-
getClearTableCache
public boolean getClearTableCache()
-
-