Package com.saperion.ws.wrapper
Class SaWsQueryInfo
- java.lang.Object
-
- com.saperion.ws.wrapper.SaWsQueryInfo
-
public class SaWsQueryInfo extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description SaWsQueryInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFetchSize()
int
getFirstResult()
int
getMaxResult()
java.util.Map<java.lang.String,java.lang.Object>
getParameters()
java.lang.String
getQueryString()
void
setFetchSize(int fetchSize)
void
setFirstResult(int firstResult)
void
setMaxResult(int maxResult)
void
setParameters(java.util.Map<java.lang.String,java.lang.Object> parameters)
void
setQueryString(java.lang.String queryString)
-
-
-
Method Detail
-
getQueryString
public final java.lang.String getQueryString()
- Returns:
- the queryString
-
getParameters
public final java.util.Map<java.lang.String,java.lang.Object> getParameters()
- Returns:
- the parameter
-
getFetchSize
public final int getFetchSize()
- Returns:
- the fetchSize
-
getFirstResult
public final int getFirstResult()
- Returns:
- the firstResult
-
getMaxResult
public final int getMaxResult()
- Returns:
- the maxResult
-
setQueryString
public final void setQueryString(java.lang.String queryString)
- Parameters:
queryString
- the queryString to set
-
setParameters
public final void setParameters(java.util.Map<java.lang.String,java.lang.Object> parameters)
- Parameters:
parameters
- the parameter to set
-
setFetchSize
public final void setFetchSize(int fetchSize)
- Parameters:
fetchSize
- the fetchSize to set
-
setFirstResult
public final void setFirstResult(int firstResult)
- Parameters:
firstResult
- the firstResult to set
-
setMaxResult
public final void setMaxResult(int maxResult)
- Parameters:
maxResult
- the maxResult to set
-
-