Class VWWorkBasket
- java.lang.Object
-
- filenet.vw.api.VWQueueQuery
-
- filenet.vw.api.VWWorkBasket
-
- All Implemented Interfaces:
- java.io.Serializable
public final class VWWorkBasket extends VWQueueQuery implements java.io.Serializable
Use this class to retrieve information about a workbasket, its columns, filters, or query results.- Since:
- P8 4.5.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static classVWWorkBasket.ColumnRepresents a read-only, runtime column for the workbasket.static classVWWorkBasket.FilterRepresents a read-only, runtime filter for the workbasket.static classVWWorkBasket.QueryResultsRepresents the query result as returned by theVWWorkBasket.fetchNextBatch(int, int, java.lang.String, java.lang.String[], java.lang.Object[], java.lang.String, int)method.
-
Field Summary
Fields Modifier and Type Field and Description static intQUERY_GET_NO_SYSTEM_FIELDSDeprecated.see VWRoster, VWQueuestatic intQUERY_GET_NO_TRANSLATED_SYSTEM_FIELDSDeprecated.see VWRoster, VWQueuestatic intQUERY_GET_SYSTEM_FIELDSDeprecated.Not replaced. This is the default.static intQUERY_GET_TRANSLATED_SYSTEM_FIELDSDeprecated.Not replaced. This is the default.
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).static intQUERY_LOCK_OBJECTSDeprecated.see VWQueuestatic intQUERY_MAX_VALUES_INCLUSIVEDeprecated.see VWLog, VWRoster, VWQueuestatic intQUERY_MIN_VALUES_INCLUSIVEDeprecated.see VWLog, VWRoster, VWQueuestatic intQUERY_NO_OPTIONSDeprecated.see VWLog, VWRoster, VWQueuestatic intQUERY_READ_BOUNDDeprecated.see VWQueuestatic intQUERY_READ_LOCKEDDeprecated.see VWQueuestatic intQUERY_READ_UNWRITABLEDeprecated.see VWRoster, VWQueuestatic intQUERY_RESOLVE_NAMESDeprecated.see VWRoster, VWQueuestatic intQUERY_TRANSLATE_QUERY_FILTERDeprecated.see VWRoster, VWQueue
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description intfetchBatchCount(int queryFlags, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, int fetchType)Deprecated.Replaced by#fetchFilteredCount()VWWorkBasket.QueryResultsfetchFilteredBatch(int queryFlags, int bufferSize, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, java.lang.String queryFilter, java.lang.Object[] querySubstitutionVars, java.lang.String lastWorkRecStr, int fetchType)Gets the batch of query results based on the specified criteria.intfetchFilteredCount(int queryFlags, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, java.lang.String queryFilter, java.lang.Object[] querySubstitutionVars, int fetchType)Gets the count of the batch of query results based on the specified criteria.VWWorkBasket.QueryResultsfetchNextBatch(int queryFlags, int bufferSize, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, java.lang.String lastWorkRecStr, int fetchType)Deprecated.@deprecated Replaced by#fetchFilteredBatch()VWAttributeInfogetAttributeInfo()Gets the workbasket attributes as paired labels (hashtable keys) and values.java.lang.StringgetAuthoredName()Gets the original workbasket name.intgetBufferSize()Gets the maximum number of elements set by the user to return in a fetch.VWWorkBasket.Column[]getColumns()Gets the columns defined for the workbasket.java.lang.StringgetDescription()Gets the work basket description.VWWorkBasket.Filter[]getFilters()Gets the filters defined for the workbasket.intgetId()Gets the object ID of the workbasket.java.lang.StringgetLastRecord()Gets the last record in the query results.java.lang.StringgetName()Gets the current workbasket name.VWQueuegetQueue()Gets the queue with which the workbasket is associated.java.lang.StringgetQueueName()Gets the name of the queue with which the workbasket is associated.intgetRevision()Gets the revision number of the workbasket.booleanisShowWorkForAllUsers()This returns TRUE only if flag for Show Work For All Users is set for the WorkBasket.voidsetBufferSize(int newSize)Sets the maximum number of elements to return in a fetch (defaults to 50).voidsetLastRecord(java.lang.String lastWorkRecStr)Set the last record in the query resultjava.lang.StringtoString()Gets a String representation of the workbasket information.-
Methods inherited from class filenet.vw.api.VWQueueQuery
fetchCount, fetchInstructionElements, fetchQueueElements, fetchWorkObjects, getElementType, hasNext, isDone, next, resetFetch
-
-
-
-
Field Detail
-
QUERY_NO_OPTIONS
public static final int QUERY_NO_OPTIONS
Deprecated. see VWLog, VWRoster, VWQueueValue of 0.Flag Pass this value in the queryFlags parameter of the createQuery method to specify no search option.After passing this value, the returned work items are unlocked, unbound, and writable. If you use this flag in conjunction with another flag, the value of the other flag becomes the value input to the parameter [for example, 0(this value) + n(another flag value) = n(the other flag value)].
- See Also:
- Constant Field Values
-
QUERY_READ_LOCKED
public static final int QUERY_READ_LOCKED
Deprecated. see VWQueueValue of 1..Flag Specifies that items returned from a query should include those that are already locked.
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).- See Also:
- Constant Field Values
-
QUERY_READ_BOUND
public static final int QUERY_READ_BOUND
Deprecated. see VWQueueValue of 2..Flag Specifies that items returned from a query should include those that are already bound to a user or machine.
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).- See Also:
- Constant Field Values
-
QUERY_READ_UNWRITABLE
public static final int QUERY_READ_UNWRITABLE
Deprecated. see VWRoster, VWQueueValue of 4..Flag Specifies that items returned from a query should include those that are Read-only.
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).- See Also:
- Constant Field Values
-
QUERY_LOCK_OBJECTS
public static final int QUERY_LOCK_OBJECTS
Deprecated. see VWQueueValue of 16..Flag Specifies that items returned from a query should become locked. See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).- See Also:
- Constant Field Values
-
QUERY_MIN_VALUES_INCLUSIVE
public static final int QUERY_MIN_VALUES_INCLUSIVE
Deprecated. see VWLog, VWRoster, VWQueueValue of 32..Flag Specifies that minimum values passed in a query are inclusive, i.e. the comparison should be "greater than or equal to" rather than "greater than" (which is the default).
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).- See Also:
- Constant Field Values
-
QUERY_MAX_VALUES_INCLUSIVE
public static final int QUERY_MAX_VALUES_INCLUSIVE
Deprecated. see VWLog, VWRoster, VWQueueValue of 64..Flag Specifies that maximum values passed in a query are inclusive, i.e. the comparison should be "less than or equal to" rather than "less than" (which is the default).
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).- See Also:
- Constant Field Values
-
QUERY_GET_SYSTEM_FIELDS
public static final int QUERY_GET_SYSTEM_FIELDS
Deprecated. Not replaced. This is the default.Value of 256. Flag Pass this value in the queryFlags parameter of the createQuery method to specify the return of system field names and values.Use the system fields for additional queries on objects. A method that requires translation returns a default value (null, 0, or false). Helper methods require the QUERY_GET_TRANSLATED_SYSTEM_FIELDS to function properly.
- See Also:
- Constant Field Values
-
QUERY_GET_TRANSLATED_SYSTEM_FIELDS
public static final int QUERY_GET_TRANSLATED_SYSTEM_FIELDS
Deprecated. Not replaced. This is the default.
See the queryFlags parameter ofVWRoster.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)andVWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int).Value of 512..Flag Specifies that the query items returned from the query should include translated system field values.- See Also:
- Constant Field Values
-
QUERY_GET_NO_SYSTEM_FIELDS
public static final int QUERY_GET_NO_SYSTEM_FIELDS
Deprecated. see VWRoster, VWQueueValue of 1024.Flag Include this value in the queryFlags parameter of the createQuery() method to return objects without system fields.System fields and translated system fields are used in the helper methods for each object. Note that VWWorkObject objects have system fields that are not present in VWStepElement objects.
A method that requires translation returns a default value (null, 0, or false) for this flag. This is because related helper methods require the system fields and translated system fields to function properly.
- See Also:
- Constant Field Values
-
QUERY_GET_NO_TRANSLATED_SYSTEM_FIELDS
public static final int QUERY_GET_NO_TRANSLATED_SYSTEM_FIELDS
Deprecated. see VWRoster, VWQueueValue of 2048.Flag Include this value in the queryFlags parameter of the createQuery() method to return objects without translated fields.Use for performance enhancement when methods on a retrieved object are not needed and only the returned data itself is needed.
System fields and translated system fields are used in the helper methods for each object. Note that VWWorkObject objects have system fields that are not present in VWStepElement objects. A VWStepElement object contains only parameter data if this flag is used. However, a VWWorkObject object will contain system fields even if this flag is used.
A method that requires translation returns a default value (null, 0, or false) for this flag. This is because related helper methods require the system fields and translated system fields to function properly.
- See Also:
- Constant Field Values
-
QUERY_RESOLVE_NAMES
public static final int QUERY_RESOLVE_NAMES
Deprecated. see VWRoster, VWQueueValue of 8192..Flag Indicates query is to parse the maxValues, minValues, filter and substitutionVars values for user name and class substitution of strings to IDs. This supports conversion of user names to ids for Process Engine Web Services to perform queries using user ID fields within an index or filter (used when querying for rosters, queues and logs). Process Engine Web Services is stateless, so the conversion of name to ID within the index and filter values is done on the PE server.- See Also:
- Constant Field Values
-
QUERY_TRANSLATE_QUERY_FILTER
public static final int QUERY_TRANSLATE_QUERY_FILTER
Deprecated. see VWRoster, VWQueueValue of 8192..Flag Indicates query is to parse the maxValues, minValues, filter and substitutionVars values for user name and class substitution of strings to IDs. This constant has been renamed to QUERY_RESOLVE_NAMES. This supports conversion of user names to ids for Process Engine Web Services to perform queries using user ID fields within an index or filter (used when querying for rosters, queues and logs). Process Engine Web Services is stateless, so the conversion of name to ID within the index and filter values is done on the PE server.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public java.lang.String getName() throws VWExceptionGets the current workbasket name. If a translated version exists, that version is returned.- Returns:
- A String containing the name currently assigned to the workbasket.
- Throws:
VWException
-
getAuthoredName
public java.lang.String getAuthoredName() throws VWExceptionGets the original workbasket name.- Returns:
- A String containing the name originally assigned to the workbasket.
- Throws:
VWException
-
getDescription
public java.lang.String getDescription() throws VWExceptionGets the work basket description.- Returns:
- A String containing the description of the workbasket.
- Throws:
VWException
-
getQueueName
public java.lang.String getQueueName()
Gets the name of the queue with which the workbasket is associated.- Returns:
- A String containing the name of the queue associated with the workbasket.
-
getId
public int getId()
Gets the object ID of the workbasket.- Returns:
- An integer representing the object ID of the workbasket.
-
getRevision
public int getRevision() throws VWExceptionGets the revision number of the workbasket.- Returns:
- An integer indicating the revision number of the workbasket.
- Throws:
VWException
-
getAttributeInfo
public VWAttributeInfo getAttributeInfo() throws VWException
Gets the workbasket attributes as paired labels (hashtable keys) and values.- Returns:
- A VWAttributeInfo object containing a hashtable of key (label) and value pairs representing the attributes for the workbasket.
- Throws:
VWException
-
getQueue
public VWQueue getQueue()
Gets the queue with which the workbasket is associated.- Overrides:
getQueuein classVWQueueQuery- Returns:
- A VWQueue object representing the queue for the workbasket.
- Throws:
VWException- See Also:
VWQueue
-
getColumns
public VWWorkBasket.Column[] getColumns()
Gets the columns defined for the workbasket.- Returns:
- An array of the workbasket columns.
-
getFilters
public VWWorkBasket.Filter[] getFilters()
Gets the filters defined for the workbasket.- Returns:
- An array of the workbasket filters.
-
fetchNextBatch
public VWWorkBasket.QueryResults fetchNextBatch(int queryFlags, int bufferSize, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, java.lang.String lastWorkRecStr, int fetchType) throws VWException
Deprecated. @deprecated Replaced by#fetchFilteredBatch()Gets the next batch of query results based on the specified criteria.- Parameters:
queryFlags- An integer value that specifies the query options.Use the | and + operators to combine the flags. See the QUERY_* properties on
VWQueuefor descriptions of the possible query flags.bufferSize- An integer value indicating the maximum number of elements to return. The default is 50.sortColumn- A String containing the name of the column to sort by.filterNames- A String array of the names of the workbasket filters to use for the query.filterNameValuess- An array of objects containing validVWFieldTypevalues to apply to the workbasket filters.lastWorkRecStr- A base64-encoded String containing the last record of the query results. If this value is null, the query starts from the beginning.fetchType- An integer value associated with the element type to be retrieved. Valid element type values must be one of the following:- 1: Work object (FETCH_TYPE_WORKOBJECT)
- 3: Queue element (FETCH_TYPE_QUEUE_ELEMENT)
- 5: Step element (FETCH_TYPE_STEP_ELEMENT)
- Returns:
- A QueryResults object containing the results of the query. If the end of the query results was reached in the preceding call to this method, null will be returned.
- Throws:
VWException
-
fetchFilteredBatch
public VWWorkBasket.QueryResults fetchFilteredBatch(int queryFlags, int bufferSize, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, java.lang.String queryFilter, java.lang.Object[] querySubstitutionVars, java.lang.String lastWorkRecStr, int fetchType) throws VWException
Gets the batch of query results based on the specified criteria. Resets the any previous VWWorkBasket query values with the new criteria specified by the input parameters- Parameters:
queryFlags- An integer value that specifies the query options.Use the | and + operators to combine the flags. See the QUERY_* properties on
VWQueuefor descriptions of the possible query flags.bufferSize- An integer value indicating the maximum number of elements to return.sortColumn- A String containing the name of the column to sort by.filterNames- A String array of the names of the workbasket filters to use for the query.filterNameValues- An array of objects containing validVWFieldTypevalues to apply to the workbasket filters.queryFilter- A SQL WHERE clause used as a filter, and having placeholder variables that are replaced by values in the substitutionVars parameter. Fields used in the query filter should be based on exposed fields of the queue associated with the workbasket.Use this parameter in conjunction with the sortColumn index and filterNames, and queryFlags to refine the search. The SQL WHERE clause should contain a search field name on the left side of an operator and a placeholder variable on the right side of the operator.
The field names are processed as SQL column names. For this reason, it is important that you do not use SQL function names as field names.
For queryFilter parameter SQL WHERE clause example:
integerA < :A AND stringB =:B
specifies returned objects must meet the following conditions:
- The integer search field, integerA, must be less than the value of the placeholder variable A.
- The string search field, stringB, must be equal to the value of the next placeholder variable B.
Use the following guidelines when creating the queryFilter:
- In a SQL WHERE clause, a colon (:) precedes each placeholder variable on the right side of the statement.
- The search field is an exposed field on the queue associated with the VWWorkBasket.
- When the SQL WHERE clause is processed, each placeholder variable is replaced (in corresponding order) with a value specified in the querySubstitutionVars parameter.
querySubstitutionVars- An array of objects containing the values to substitute for the placeholder variables specified in the SQL WHERE clause for the queryFilter parameter.A
VWWorkObjectNumberobject can be used here in place of F_WobNum and F_WorkFlowNumber. Queries to DB2 databases must use VWWorkObjectNumber instead of F_WobNum or F_WorkFlowNumber.If there is no placeholder variable in the filter parameter, the values for the substitutionVars parameter will be ignored (and can be null). The array elements in this parameter are substituted, in corresponding order, for the placeholder variables in the filter parameter.
Note: When using special SQL characters (such as, %), these characters need to be contained within the substitution string, and the entire substitution string must be quoted.
For example, if the queryFilter parameter contains three placeholder variables specified as ":A", there must be three corresponding substitution variables.
For example:
{new Integer(1000),"Smith"}This querySubstitutionVars parameter would have a corresponding queryFilter parameter of the following:
integerA < 1000 AND stringB = "Smith"
lastWorkRecStr- A base64-encoded String containing the last record of the query results. If this value is null, the query starts from the beginning.fetchType- An integer value associated with the element type to be retrieved. Valid element type values must be one of the following:- 1: Work object (FETCH_TYPE_WORKOBJECT)
- 3: Queue element (FETCH_TYPE_QUEUE_ELEMENT)
- 5: Step element (FETCH_TYPE_STEP_ELEMENT)
- Returns:
- A QueryResults object containing the results of the query. If the end of the query results was reached in the preceding call to this method, null will be returned.
- Throws:
VWException- See Also:
VWQueue.createQuery(java.lang.String, java.lang.Object[], java.lang.Object[], int, java.lang.String, java.lang.Object[], int)
-
toString
public java.lang.String toString()
Gets a String representation of the workbasket information.- Overrides:
toStringin classVWQueueQuery- Returns:
- A String containing the workbasket information.
-
fetchBatchCount
public int fetchBatchCount(int queryFlags, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, int fetchType) throws VWExceptionDeprecated. Replaced by#fetchFilteredCount()Gets the count of the batch of query results based on the specified criteria.- Parameters:
queryFlags- An integer value that specifies the query options.Use the | and + operators to combine the flags. See the QUERY_* properties on
VWQueuefor descriptions of the possible query flags.sortColumn- A String containing the name of the column to sort by.filterNames- A String array of the names of the workbasket filters to use for the query.filterNameValues- An array of objects containing validVWFieldTypevalues to apply to the workbasket filters.fetchType- An integer value associated with the element type to be retrieved. Valid element type values must be one of the following:- 1: Work object (FETCH_TYPE_WORKOBJECT)
- 3: Queue element (FETCH_TYPE_QUEUE_ELEMENT)
- 5: Step element (FETCH_TYPE_STEP_ELEMENT)
- Returns:
- An integer value indicating the number of records that could be retrieved in the queue associated with this workbasket query.
- Throws:
VWException- Thrown if it cannot get the integer value indicating the number of records that can be retrieved. One cause of this is an incorrect query parameter.
-
fetchFilteredCount
public int fetchFilteredCount(int queryFlags, java.lang.String sortColumn, java.lang.String[] filterNames, java.lang.Object[] filterNameValues, java.lang.String queryFilter, java.lang.Object[] querySubstitutionVars, int fetchType) throws VWExceptionGets the count of the batch of query results based on the specified criteria.- Parameters:
queryFlags- An integer value that specifies the query options.Use the | and + operators to combine the flags. See the QUERY_* properties on
VWQueuefor descriptions of the possible query flags.sortColumn- A String containing the name of the column to sort by.filterNames- A String array of the names of the workbasket filters to use for the query.filterNameValues- An array of objects containing validVWFieldTypevalues to apply to the workbasket filters.fetchType- An integer value associated with the element type to be retrieved. Valid element type values must be one of the following:- 1: Work object (FETCH_TYPE_WORKOBJECT)
- 3: Queue element (FETCH_TYPE_QUEUE_ELEMENT)
- 5: Step element (FETCH_TYPE_STEP_ELEMENT)
queryFilter- A SQL WHERE clause used as a filter, and having placeholder variables that are replaced by values in the substitutionVars parameter. Fields used in the query filter should be based on exposed fields of the queue associated with the workbasket.Use this parameter in conjunction with the sortColumn index and filterNames, and queryFlags to refine the search. The SQL WHERE clause should contain a search field name on the left side of an operator and a placeholder variable on the right side of the operator.
The field names are processed as SQL column names. For this reason, it is important that you do not use SQL function names as field names.
For queryFilter parameter SQL WHERE clause example:
integerA < :A AND stringB =:B
specifies returned objects must meet the following conditions:
- The integer search field, integerA, must be less than the value of the placeholder variable A.
- The string search field, stringB, must be equal to the value of the next placeholder variable B.
Use the following guidelines when creating the queryFilter:
- In a SQL WHERE clause, a colon (:) precedes each placeholder variable on the right side of the statement.
- The search field is an exposed field on the queue associated with the VWWorkBasket.
- When the SQL WHERE clause is processed, each placeholder variable is replaced (in corresponding order) with a value specified in the querySubstitutionVars parameter.
querySubstitutionVars- An array of objects containing the values to substitute for the placeholder variables specified in the SQL WHERE clause for the queryFilter parameter.- Returns:
- An integer value indicating the number of records that could be retrieved in the queue associated with this workbasket query.
- Throws:
VWException- Thrown if it cannot get the integer value indicating the number of records that can be retrieved. One cause of this is an incorrect query parameter.- Since:
- CPE5.2.0.1
-
isShowWorkForAllUsers
public boolean isShowWorkForAllUsers()
This returns TRUE only if flag for Show Work For All Users is set for the WorkBasket. This flag would allow the user of the WorkBasket to query for all items, not just those the user is bound. This flag is only useful for WorkBasket that are associated to a QUEUE_TYPE_USER_CENTRIC type queue.
-
getBufferSize
public int getBufferSize()
Gets the maximum number of elements set by the user to return in a fetch. The default value is 50.- Returns:
- An integer value indicating the maximum number of elements to return in a fetch.
- Since:
- VWWS4.0
-
setBufferSize
public void setBufferSize(int newSize) throws VWExceptionSets the maximum number of elements to return in a fetch (defaults to 50). The server imposes a maximum limit of 100. The number returned may be smaller if the items are very large.- Parameters:
newSize- This must be greater than zero.- Throws:
VWException- Thrown if buffer size is less than or equal to 0 (zero).
-
getLastRecord
public java.lang.String getLastRecord()
Gets the last record in the query results.- Returns:
- A base64-encoded String containing the last record of the query results. Null is returned if no last record.
- Since:
- CPE 5.2.0.3
-
setLastRecord
public void setLastRecord(java.lang.String lastWorkRecStr)
Set the last record in the query result- Parameters:
lastWorkRecStr- A base64-encoded String containing the last record of the query results. If this value is null, the query starts from the beginning.- Since:
- CPE 5.2.0.3
-
-