public class ListStoreIdsRequest
extends java.lang.Object
Constructor and Description |
---|
ListStoreIdsRequest(java.lang.String appId,
java.lang.Boolean archived,
java.lang.Boolean shadow,
java.lang.String filter,
java.lang.String orderBy)
Constructs a new instance of the ListStoreIdsRequest object
|
ListStoreIdsRequest(java.lang.String appId,
java.lang.Boolean archived,
java.lang.Boolean shadow,
java.lang.String filter,
java.lang.String orderBy,
int pageIndex,
int pageSize)
Constructs a new instance of the ListStoreIdsRequest object
|
ListStoreIdsRequest(java.lang.String appId,
java.lang.Boolean archived,
java.lang.Boolean shadow,
java.lang.String filter,
java.lang.String orderBy,
int pageIndex,
int pageSize,
java.util.Date startDate,
java.util.Date endDate)
Constructs a new instance of the ListStoreIdsRequest object
|
ListStoreIdsRequest(java.lang.String appId,
java.lang.Boolean archived,
java.lang.Boolean shadow,
java.lang.String filter,
java.lang.String orderBy,
int pageIndex,
int pageSize,
java.util.Date startDate,
java.util.Date endDate,
boolean wantFullyQualifiedStoreIds)
Constructs a new instance of the ListStoreIdsRequest object
|
ListStoreIdsRequest(java.lang.String appId,
java.lang.String filter,
java.lang.String orderBy)
Constructs a new instance of the ListStoreIdsRequest object
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAppId()
An optional application id to narrow down results by app.
|
java.lang.Boolean |
getArchived()
If not null, will apply a filter on the query for stores on whether or not the Archive column is set to true or
false accordingly.
|
java.util.Date |
getEndDate()
If not null, then only rows updated BEFORE this timestamp will be returned.
|
java.lang.String |
getFilter()
This is an additional filter which may be applied to the query.
|
java.lang.String |
getOrderBy()
an optional ORDER BY clause, such as "_id DESC"
|
int |
getPageIndex()
The Page index for the current request.
|
int |
getPageSize()
Number of rows per page.
|
java.lang.Boolean |
getShadow()
If not null, will apply a filter on the query for stores on whether or not the Shadow column is set to true or
false accordingly.
|
java.util.Date |
getStartDate()
If not null, then only rows updated AFTER this timestamp will be returned.
|
boolean |
getWantFullyQualifiedStoreIds()
Specifies that we do or don't want the result to contain fully qualified store ids.
|
void |
setAppId(java.lang.String appId)
An optional application id to narrow down results by app.
|
void |
setArchived(java.lang.Boolean archived)
If not null, will apply a filter on the query for stores on whether or not the Archive column is set to true or
false accordingly.
|
void |
setEndDate(java.util.Date endDate)
If not null, then only rows updated BEFORE this timestamp will be returned.
|
void |
setFilter(java.lang.String filter)
This is an additional filter which may be applied to the query.
|
void |
setOrderBy(java.lang.String orderBy)
an optional ORDER BY clause, such as "_id DESC"
|
void |
setPageIndex(int pageIndex)
The Page index for the current request.
|
void |
setPageSize(int pageSize)
Number of rows per page.
|
void |
setShadow(java.lang.Boolean shadow)
If not null, will apply a filter on the query for stores on whether or not the Shadow column is set to true or
false accordingly.
|
void |
setStartDate(java.util.Date startDate)
If not null, then only rows updated AFTER this timestamp will be returned.
|
void |
setWantFullyQualifiedStoreIds(boolean wantFullyQualifiedStoreIds)
Specifies that we do or don't want the result to contain fully qualified store ids.
|
public ListStoreIdsRequest(java.lang.String appId, java.lang.String filter, java.lang.String orderBy)
appId
- An optional application id to narrow down results by app.filter
- An optional SQL filterorderBy
- an optional ORDER BY clause, such as "_id DESC"public ListStoreIdsRequest(java.lang.String appId, java.lang.Boolean archived, java.lang.Boolean shadow, java.lang.String filter, java.lang.String orderBy)
appId
- An optional application id to narrow down results by app.archived
- If not null, will apply a filter on the query for stores on whether or not the Archive column is set to true or
false accordingly. Leave null to exclude this from the filter.shadow
- If not null, will apply a filter on the query for stores on whether or not the Shadow column is set to true or
false accordingly. Leave null to exclude this from the filter.filter
- This is an additional filter which may be applied to the query.orderBy
- an optional ORDER BY clause, such as "_id DESC"public ListStoreIdsRequest(java.lang.String appId, java.lang.Boolean archived, java.lang.Boolean shadow, java.lang.String filter, java.lang.String orderBy, int pageIndex, int pageSize)
appId
- An optional application id to narrow down results by app.archived
- If not null, will apply a filter on the query for stores on whether or not the Archive column is set to true or
false accordingly. Leave null to exclude this from the filter.shadow
- If not null, will apply a filter on the query for stores on whether or not the Shadow column is set to true or
false accordingly. Leave null to exclude this from the filter.filter
- This is an additional filter which may be applied to the query.orderBy
- an optional ORDER BY clause, such as "_id DESC"pageIndex
- The Page index for the current request. -1 for no paging(the default)pageSize
- Number of rows per page.public ListStoreIdsRequest(java.lang.String appId, java.lang.Boolean archived, java.lang.Boolean shadow, java.lang.String filter, java.lang.String orderBy, int pageIndex, int pageSize, java.util.Date startDate, java.util.Date endDate)
appId
- An optional application id to narrow down results by app.archived
- If not null, will apply a filter on the query for stores on whether or not the Archive column is set to true or
false accordingly. Leave null to exclude this from the filter.shadow
- If not null, will apply a filter on the query for stores on whether or not the Shadow column is set to true or
false accordingly. Leave null to exclude this from the filter.filter
- This is an additional filter which may be applied to the query.orderBy
- an optional ORDER BY clause, such as "_id DESC"pageIndex
- The Page index for the current request. -1 for no paging(the default)pageSize
- Number of rows per page.startDate
- If not null, then only rows updated after this timestamp will be returned.endDate
- If not null, then only rows updated before this timestamp will be returned.public ListStoreIdsRequest(java.lang.String appId, java.lang.Boolean archived, java.lang.Boolean shadow, java.lang.String filter, java.lang.String orderBy, int pageIndex, int pageSize, java.util.Date startDate, java.util.Date endDate, boolean wantFullyQualifiedStoreIds)
appId
- An optional application id to narrow down results by app.archived
- If not null, will apply a filter on the query for stores on whether or not the Archive column is set to true or
false accordingly. Leave null to exclude this from the filter.shadow
- If not null, will apply a filter on the query for stores on whether or not the Shadow column is set to true or
false accordingly. Leave null to exclude this from the filter.filter
- This is an additional filter which may be applied to the query.orderBy
- an optional ORDER BY clause, such as "_id DESC"pageIndex
- The Page index for the current request. -1 for no paging(the default)pageSize
- Number of rows per page.startDate
- If not null, then only rows updated after this timestamp will be returned.endDate
- If not null, then only rows updated before this timestamp will be returned.wantFullyQualifiedStoreIds
- Specifies that we do or don't want the result to contain fully qualified store ids. Fully Qualified store ids contain the app name as part of the store id.public java.lang.String getAppId()
public void setAppId(java.lang.String appId)
appId
- public java.lang.Boolean getArchived()
public void setArchived(java.lang.Boolean archived)
archived
- public java.lang.Boolean getShadow()
public void setShadow(java.lang.Boolean shadow)
shadow
- public java.lang.String getFilter()
public void setFilter(java.lang.String filter)
filter
- public java.lang.String getOrderBy()
public void setOrderBy(java.lang.String orderBy)
orderBy
- public int getPageIndex()
public void setPageIndex(int pageIndex)
pageIndex
- public int getPageSize()
public void setPageSize(int pageSize)
pageSize
- public java.util.Date getStartDate()
public void setStartDate(java.util.Date startDate)
startDate
- public java.util.Date getEndDate()
public void setEndDate(java.util.Date endDate)
endDate
- public boolean getWantFullyQualifiedStoreIds()
public void setWantFullyQualifiedStoreIds(boolean wantFullyQualifiedStoreIds)
wantFullyQualifiedStoreIds
-