Package org.camunda.bpm.engine.impl.db
Class ListQueryParameterObject
- java.lang.Object
 - 
- org.camunda.bpm.engine.impl.db.ListQueryParameterObject
 
 
- 
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 AbstractQuery,MetricsQueryImpl,QueryParameters,TablePageQueryImpl
public class ListQueryParameterObject extends Object implements Serializable
- Author:
 - Daniel Meyer
 - See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected AuthorizationCheckauthCheckprotected StringdatabaseTypeprotected intfirstResultprotected intmaxResultsprotected List<QueryOrderingProperty>orderingPropertiesprotected Objectparameterprotected TenantChecktenantCheck 
- 
Constructor Summary
Constructors Constructor Description ListQueryParameterObject()ListQueryParameterObject(Object parameter, int firstResult, int maxResults) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationCheckgetAuthCheck()StringgetDatabaseType()intgetFirstResult()intgetFirstRow()intgetLastRow()intgetMaxResults()List<QueryOrderingProperty>getOrderingProperties()ObjectgetParameter()TenantCheckgetTenantCheck()voidsetAuthCheck(AuthorizationCheck authCheck)voidsetDatabaseType(String databaseType)voidsetFirstResult(int firstResult)voidsetMaxResults(int maxResults)voidsetOrderingProperties(List<QueryOrderingProperty> orderingProperties)voidsetParameter(Object parameter)voidsetTenantCheck(TenantCheck tenantCheck) 
 - 
 
- 
- 
Field Detail
- 
authCheck
protected AuthorizationCheck authCheck
 
- 
tenantCheck
protected TenantCheck tenantCheck
 
- 
orderingProperties
protected List<QueryOrderingProperty> orderingProperties
 
- 
maxResults
protected int maxResults
 
- 
firstResult
protected int firstResult
 
- 
parameter
protected Object parameter
 
- 
databaseType
protected String databaseType
 
 - 
 
- 
Constructor Detail
- 
ListQueryParameterObject
public ListQueryParameterObject()
 
- 
ListQueryParameterObject
public ListQueryParameterObject(Object parameter, int firstResult, int maxResults)
 
 - 
 
- 
Method Detail
- 
getFirstResult
public int getFirstResult()
 
- 
getFirstRow
public int getFirstRow()
 
- 
getLastRow
public int getLastRow()
 
- 
getMaxResults
public int getMaxResults()
 
- 
getParameter
public Object getParameter()
 
- 
setFirstResult
public void setFirstResult(int firstResult)
 
- 
setMaxResults
public void setMaxResults(int maxResults)
 
- 
setParameter
public void setParameter(Object parameter)
 
- 
setDatabaseType
public void setDatabaseType(String databaseType)
 
- 
getDatabaseType
public String getDatabaseType()
 
- 
getAuthCheck
public AuthorizationCheck getAuthCheck()
 
- 
setAuthCheck
public void setAuthCheck(AuthorizationCheck authCheck)
 
- 
getTenantCheck
public TenantCheck getTenantCheck()
 
- 
setTenantCheck
public void setTenantCheck(TenantCheck tenantCheck)
 
- 
getOrderingProperties
public List<QueryOrderingProperty> getOrderingProperties()
 
- 
setOrderingProperties
public void setOrderingProperties(List<QueryOrderingProperty> orderingProperties)
 
 - 
 
 -