public abstract class AbstractQueryRecordsBase extends AbstractDTOBase
Derived classes must follow the template below:
{
@code
public class QueryResultMySObject extends AbstractQueryRecordsBase {
private List records;
public List getRecords() {
return records;
}
public void setRecords(List records) {
this.records = records;
}
}
}
| Constructor and Description |
|---|
AbstractQueryRecordsBase() |
| Modifier and Type | Method and Description |
|---|---|
Boolean |
getDone() |
String |
getNextRecordsUrl() |
int |
getTotalSize() |
void |
setDone(Boolean done) |
void |
setNextRecordsUrl(String nextRecordsUrl) |
void |
setTotalSize(int totalSize) |
toStringpublic Boolean getDone()
public void setDone(Boolean done)
public int getTotalSize()
public void setTotalSize(int totalSize)
public String getNextRecordsUrl()
public void setNextRecordsUrl(String nextRecordsUrl)
Apache Camel