org.enhydra.shark.eventaudit.data
Class ProcessHistoryInfoQuery

java.lang.Object
  extended by org.enhydra.shark.eventaudit.data.ProcessHistoryInfoQuery
All Implemented Interfaces:
com.lutris.appserver.server.sql.ExtendedQuery, com.lutris.appserver.server.sql.Query

public class ProcessHistoryInfoQuery
extends java.lang.Object
implements com.lutris.appserver.server.sql.ExtendedQuery

ProcessHistoryInfoQuery is used to query the SHKProcessHistoryInfo table in the database.
It returns objects of type ProcessHistoryInfoDO.

General usage:

In DODS: Create a Data Object named "Dog", and create an Attribute named "Name", and set that Attribute to "Can be queried." DODS will then generate the method DogQuery.setQueryName().

In your Business Layer, prepare the query:

                           DogQuery     dq = new DogQuery();
                           dq.setQueryName("Rex")
                           if ( Rex     is a reserved name )
                                   dq.requireUniqueInstance();
 
Then, get the query results one of two ways:

#1:

                           String names = "";
                           DogDO[] dogs = dq.getDOArray();
                           for ( int i = 0;     i < dogs.length;        i++     ) {
                                   names +=     dogs[i].getName() +     " ";
                           }
 
or #2:
                           String names = "";
                           DogDO dog;
                           while ( null != ( dog = dq.getNextDO() )     ) {
                                   names +=     dog.getName() + " ";
                           }
 

Note: If requireUniqueInstance() was called, then getDOArray() or getNextDO() will throw an exception if more than one "Rex" was found.

Note: Results of the query will come from the Data Object cache if: - The cache is available. - Matches were found in the cache. - No other tables (Data Objects of other types) were involved in the query. This can happen if you extend the DogQuery class and you make calls to the QueryBuilder object to add SQL involving other tables. If any of these conditions is not true, then any results from the query will come from the database.

To reuse the query object, call:

                           dq.reset();
 

Version:
$Revision: 1.38 $
Author:
NN

Constructor Summary
ProcessHistoryInfoQuery()
          Public constructor.
ProcessHistoryInfoQuery(com.lutris.appserver.server.sql.DBTransaction dbTrans)
          Public constructor.
 
Method Summary
static void _helperReconstrQuery(ProcessHistoryInfoQuery q, int col, java.lang.String value, java.lang.String op)
          WARNING!
 void addOrderByClosedByUsername()
          Add ClosedByUsername to the ORDER BY clause.
 void addOrderByClosedByUsername(boolean direction_flag)
          Add ClosedByUsername to the ORDER BY clause.
 void addOrderByClosedTime()
          Add ClosedTime to the ORDER BY clause.
 void addOrderByClosedTime(boolean direction_flag)
          Add ClosedTime to the ORDER BY clause.
 void addOrderByClosedTimeTZO()
          Add ClosedTimeTZO to the ORDER BY clause.
 void addOrderByClosedTimeTZO(boolean direction_flag)
          Add ClosedTimeTZO to the ORDER BY clause.
 void addOrderByCreatedByUsername()
          Add CreatedByUsername to the ORDER BY clause.
 void addOrderByCreatedByUsername(boolean direction_flag)
          Add CreatedByUsername to the ORDER BY clause.
 void addOrderByCreatedTime()
          Add CreatedTime to the ORDER BY clause.
 void addOrderByCreatedTime(boolean direction_flag)
          Add CreatedTime to the ORDER BY clause.
 void addOrderByCreatedTimeTZO()
          Add CreatedTimeTZO to the ORDER BY clause.
 void addOrderByCreatedTimeTZO(boolean direction_flag)
          Add CreatedTimeTZO to the ORDER BY clause.
 void addOrderByLastState()
          Add LastState to the ORDER BY clause.
 void addOrderByLastState(boolean direction_flag)
          Add LastState to the ORDER BY clause.
 void addOrderByLastStateTime()
          Add LastStateTime to the ORDER BY clause.
 void addOrderByLastStateTime(boolean direction_flag)
          Add LastStateTime to the ORDER BY clause.
 void addOrderByLastStateTimeTZO()
          Add LastStateTimeTZO to the ORDER BY clause.
 void addOrderByLastStateTimeTZO(boolean direction_flag)
          Add LastStateTimeTZO to the ORDER BY clause.
 void addOrderByPackageId()
          Add PackageId to the ORDER BY clause.
 void addOrderByPackageId(boolean direction_flag)
          Add PackageId to the ORDER BY clause.
 void addOrderByPActivityDefinitionId()
          Add PActivityDefinitionId to the ORDER BY clause.
 void addOrderByPActivityDefinitionId(boolean direction_flag)
          Add PActivityDefinitionId to the ORDER BY clause.
 void addOrderByPActivityDefinitionName()
          Add PActivityDefinitionName to the ORDER BY clause.
 void addOrderByPActivityDefinitionName(boolean direction_flag)
          Add PActivityDefinitionName to the ORDER BY clause.
 void addOrderByPActivityId()
          Add PActivityId to the ORDER BY clause.
 void addOrderByPActivityId(boolean direction_flag)
          Add PActivityId to the ORDER BY clause.
 void addOrderByPPackageId()
          Add PPackageId to the ORDER BY clause.
 void addOrderByPPackageId(boolean direction_flag)
          Add PPackageId to the ORDER BY clause.
 void addOrderByPProcessDefinitionId()
          Add PProcessDefinitionId to the ORDER BY clause.
 void addOrderByPProcessDefinitionId(boolean direction_flag)
          Add PProcessDefinitionId to the ORDER BY clause.
 void addOrderByPProcessDefinitionName()
          Add PProcessDefinitionName to the ORDER BY clause.
 void addOrderByPProcessDefinitionName(boolean direction_flag)
          Add PProcessDefinitionName to the ORDER BY clause.
 void addOrderByPProcessFactoryName()
          Add PProcessFactoryName to the ORDER BY clause.
 void addOrderByPProcessFactoryName(boolean direction_flag)
          Add PProcessFactoryName to the ORDER BY clause.
 void addOrderByPProcessFactoryVersion()
          Add PProcessFactoryVersion to the ORDER BY clause.
 void addOrderByPProcessFactoryVersion(boolean direction_flag)
          Add PProcessFactoryVersion to the ORDER BY clause.
 void addOrderByPProcessId()
          Add PProcessId to the ORDER BY clause.
 void addOrderByPProcessId(boolean direction_flag)
          Add PProcessId to the ORDER BY clause.
 void addOrderByPProcessName()
          Add PProcessName to the ORDER BY clause.
 void addOrderByPProcessName(boolean direction_flag)
          Add PProcessName to the ORDER BY clause.
 void addOrderByProcessDefinitionId()
          Add ProcessDefinitionId to the ORDER BY clause.
 void addOrderByProcessDefinitionId(boolean direction_flag)
          Add ProcessDefinitionId to the ORDER BY clause.
 void addOrderByProcessDefinitionName()
          Add ProcessDefinitionName to the ORDER BY clause.
 void addOrderByProcessDefinitionName(boolean direction_flag)
          Add ProcessDefinitionName to the ORDER BY clause.
 void addOrderByProcessDuration()
          Add ProcessDuration to the ORDER BY clause.
 void addOrderByProcessDuration(boolean direction_flag)
          Add ProcessDuration to the ORDER BY clause.
 void addOrderByProcessFactoryName()
          Add ProcessFactoryName to the ORDER BY clause.
 void addOrderByProcessFactoryName(boolean direction_flag)
          Add ProcessFactoryName to the ORDER BY clause.
 void addOrderByProcessFactoryVersion()
          Add ProcessFactoryVersion to the ORDER BY clause.
 void addOrderByProcessFactoryVersion(boolean direction_flag)
          Add ProcessFactoryVersion to the ORDER BY clause.
 void addOrderByProcessId()
          Add ProcessId to the ORDER BY clause.
 void addOrderByProcessId(boolean direction_flag)
          Add ProcessId to the ORDER BY clause.
 void addOrderByProcessName()
          Add ProcessName to the ORDER BY clause.
 void addOrderByProcessName(boolean direction_flag)
          Add ProcessName to the ORDER BY clause.
 void addOrderByResumedByUsername()
          Add ResumedByUsername to the ORDER BY clause.
 void addOrderByResumedByUsername(boolean direction_flag)
          Add ResumedByUsername to the ORDER BY clause.
 void addOrderByResumedTime()
          Add ResumedTime to the ORDER BY clause.
 void addOrderByResumedTime(boolean direction_flag)
          Add ResumedTime to the ORDER BY clause.
 void addOrderByResumedTimeTZO()
          Add ResumedTimeTZO to the ORDER BY clause.
 void addOrderByResumedTimeTZO(boolean direction_flag)
          Add ResumedTimeTZO to the ORDER BY clause.
 void addOrderByStartedByUsername()
          Add StartedByUsername to the ORDER BY clause.
 void addOrderByStartedByUsername(boolean direction_flag)
          Add StartedByUsername to the ORDER BY clause.
 void addOrderByStartedTime()
          Add StartedTime to the ORDER BY clause.
 void addOrderByStartedTime(boolean direction_flag)
          Add StartedTime to the ORDER BY clause.
 void addOrderByStartedTimeTZO()
          Add StartedTimeTZO to the ORDER BY clause.
 void addOrderByStartedTimeTZO(boolean direction_flag)
          Add StartedTimeTZO to the ORDER BY clause.
 void addOrderBySuspendedByUsername()
          Add SuspendedByUsername to the ORDER BY clause.
 void addOrderBySuspendedByUsername(boolean direction_flag)
          Add SuspendedByUsername to the ORDER BY clause.
 void addOrderBySuspendedTime()
          Add SuspendedTime to the ORDER BY clause.
 void addOrderBySuspendedTime(boolean direction_flag)
          Add SuspendedTime to the ORDER BY clause.
 void addOrderBySuspendedTimeTZO()
          Add SuspendedTimeTZO to the ORDER BY clause.
 void addOrderBySuspendedTimeTZO(boolean direction_flag)
          Add SuspendedTimeTZO to the ORDER BY clause.
 void closeParen()
          Place a closing parenthesis in the WHERE clause.
 boolean containsWildcards(java.lang.String dbSearchValue)
          Check whether a string contains DB wildcards
 java.lang.String convertUserSearchValue(java.lang.String userSearchValue)
          Convert a String with user wildcards into a string with DB wildcards
 java.sql.ResultSet executeQuery(com.lutris.appserver.server.sql.DBConnection conn)
          Method to query objects from the database.
 int get_FetchSize()
          reads the current fetchsize for this query
 int get_QueryTimeout()
          Reads the current queryTimeout for this query.
 org.enhydra.dods.cache.QueryResult getCachedResults(org.enhydra.dods.cache.QueryResult result)
          Return QueryResult with read DOs or DataStructs from caches.
 int getCount()
          Get the rowcount of the query If possible, do it without reading all rows
 int getDatabaseLimit()
          Get the database limit of the query
 boolean getDatabaseLimitExceeded()
          Get the database limit exceeded flag of the query.
 ProcessHistoryInfoDO[] getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 boolean getLoadData()
          Return true if Query is prepared for select t1.* statement.
 java.lang.String getLogicalDatabase()
          Return logical name of the database that ProcessHistoryInfoQuery object uses
 int getMaxRows()
          Return limit of rows (DOs) returned.
 ProcessHistoryInfoDO getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
 com.lutris.dods.builder.generator.query.QueryBuilder getQueryBuilder()
          Returns the QueryBuilder that this ProcessHistoryInfoQuery uses to construct and execute database queries.
 int getReadSkip()
          Get the readSkip number of the query
 java.sql.PreparedStatement getStatement()
          Return java.sql.PreparedStatement from QueryBuilder class
 boolean getUnique()
          Get the unique flag of the query
 boolean getUserStringAppendWildcard()
          Get user string append wildcard.
 java.lang.String getUserStringSingleWildcard()
          Get user string single wildcard.
 java.lang.String getUserStringSingleWildcardEscape()
          Get user string single wildcard escape.
 boolean getUserStringTrim()
          Get user string trim.
 java.lang.String getUserStringWildcard()
          Get user string wildcard.
 java.lang.String getUserStringWildcardEscape()
          Get user string wildcard escape.
 void hitDatabase()
          Set that all queries go to database, not to cache.
 boolean isOrderRelevant()
          Returns attribute orderRelevant.
static void loadCache(java.lang.String root)
           
 java.lang.Object next(java.sql.ResultSet rs)
          WARNING!
 void openParen()
          Place an open parenthesis in the WHERE clause.
 void or()
          Insert an OR between WHERE clauses.
 void requireUniqueInstance()
          Set "unique instance" assertion bit.
 void reset()
          Reset the query parameters.
static void saveCache(java.lang.String root)
           
 int selectCount()
          Get the rowcount of the query by using count(*) in the DB
 void set_CursorType(int resultSetType, int resultSetConcurrency)
          set the current cursor type - overrides default value from dbVendorConf file.
 void set_FetchSize(int iCurrentFetchSizeIn)
          Set fetch size for this query
 void set_QueryTimeout(int iQueryTimeoutIn)
          Sets the current queryTimeout for this query.
 void setDatabaseLimit(int newLimit)
          Set the database limit of the query
 void setDBMatchClosedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchCreatedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchLastState(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPackageId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPActivityDefinitionId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPActivityDefinitionName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPActivityId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPPackageId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPProcessDefinitionId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPProcessDefinitionName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPProcessFactoryName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPProcessFactoryVersion(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPProcessId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchPProcessName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchProcessDefinitionId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchProcessDefinitionName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchProcessFactoryName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchProcessFactoryVersion(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchProcessId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchProcessName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchResumedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchStartedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setDBMatchSuspendedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setLoadData(boolean newValue)
          Set loadData parameter. if parameter is set to true, Query select t.* is performed.
 void setLogicalDatabase(java.lang.String dbName)
          Change logical database to another logical database (which name is dbName)
protected  void setMaxExecuteTime(int maxExeTime)
          Sets attribute maxExecuteTime.
 void setMaxRows(int maxRows)
          Limit the number of rows (DOs) returned.
 void setOrderRelevant(boolean newOrderRelevant)
          Sets attribute orderRelevant.
 void setQueryClosedByUsername(java.lang.String x)
          Set the ClosedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryClosedByUsername(java.lang.String x, java.lang.String cmp_op)
          Set the ClosedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryClosedTime(long x)
          Set the ClosedTime to query, with a QueryBuilder comparison operator.
 void setQueryClosedTime(long x, java.lang.String cmp_op)
          Set the ClosedTime to query, with a QueryBuilder comparison operator.
 void setQueryClosedTimeTZO(long x)
          Set the ClosedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryClosedTimeTZO(long x, java.lang.String cmp_op)
          Set the ClosedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryCreatedByUsername(java.lang.String x)
          Set the CreatedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryCreatedByUsername(java.lang.String x, java.lang.String cmp_op)
          Set the CreatedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryCreatedTime(long x)
          Set the CreatedTime to query, with a QueryBuilder comparison operator.
 void setQueryCreatedTime(long x, java.lang.String cmp_op)
          Set the CreatedTime to query, with a QueryBuilder comparison operator.
 void setQueryCreatedTimeTZO(long x)
          Set the CreatedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryCreatedTimeTZO(long x, java.lang.String cmp_op)
          Set the CreatedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryHandle(java.lang.String handle)
          Set the object handle to query.
 void setQueryLastState(java.lang.String x)
          Set the LastState to query, with a QueryBuilder comparison operator.
 void setQueryLastState(java.lang.String x, java.lang.String cmp_op)
          Set the LastState to query, with a QueryBuilder comparison operator.
 void setQueryLastStateTime(long x)
          Set the LastStateTime to query, with a QueryBuilder comparison operator.
 void setQueryLastStateTime(long x, java.lang.String cmp_op)
          Set the LastStateTime to query, with a QueryBuilder comparison operator.
 void setQueryLastStateTimeTZO(long x)
          Set the LastStateTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryLastStateTimeTZO(long x, java.lang.String cmp_op)
          Set the LastStateTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryOId(com.lutris.appserver.server.sql.ObjectId oid)
          Set the OID to query.
 void setQueryPackageId(java.lang.String x)
          Set the PackageId to query, with a QueryBuilder comparison operator.
 void setQueryPackageId(java.lang.String x, java.lang.String cmp_op)
          Set the PackageId to query, with a QueryBuilder comparison operator.
 void setQueryPActivityDefinitionId(java.lang.String x)
          Set the PActivityDefinitionId to query, with a QueryBuilder comparison operator.
 void setQueryPActivityDefinitionId(java.lang.String x, java.lang.String cmp_op)
          Set the PActivityDefinitionId to query, with a QueryBuilder comparison operator.
 void setQueryPActivityDefinitionName(java.lang.String x)
          Set the PActivityDefinitionName to query, with a QueryBuilder comparison operator.
 void setQueryPActivityDefinitionName(java.lang.String x, java.lang.String cmp_op)
          Set the PActivityDefinitionName to query, with a QueryBuilder comparison operator.
 void setQueryPActivityId(java.lang.String x)
          Set the PActivityId to query, with a QueryBuilder comparison operator.
 void setQueryPActivityId(java.lang.String x, java.lang.String cmp_op)
          Set the PActivityId to query, with a QueryBuilder comparison operator.
 void setQueryPPackageId(java.lang.String x)
          Set the PPackageId to query, with a QueryBuilder comparison operator.
 void setQueryPPackageId(java.lang.String x, java.lang.String cmp_op)
          Set the PPackageId to query, with a QueryBuilder comparison operator.
 void setQueryPProcessDefinitionId(java.lang.String x)
          Set the PProcessDefinitionId to query, with a QueryBuilder comparison operator.
 void setQueryPProcessDefinitionId(java.lang.String x, java.lang.String cmp_op)
          Set the PProcessDefinitionId to query, with a QueryBuilder comparison operator.
 void setQueryPProcessDefinitionName(java.lang.String x)
          Set the PProcessDefinitionName to query, with a QueryBuilder comparison operator.
 void setQueryPProcessDefinitionName(java.lang.String x, java.lang.String cmp_op)
          Set the PProcessDefinitionName to query, with a QueryBuilder comparison operator.
 void setQueryPProcessFactoryName(java.lang.String x)
          Set the PProcessFactoryName to query, with a QueryBuilder comparison operator.
 void setQueryPProcessFactoryName(java.lang.String x, java.lang.String cmp_op)
          Set the PProcessFactoryName to query, with a QueryBuilder comparison operator.
 void setQueryPProcessFactoryVersion(java.lang.String x)
          Set the PProcessFactoryVersion to query, with a QueryBuilder comparison operator.
 void setQueryPProcessFactoryVersion(java.lang.String x, java.lang.String cmp_op)
          Set the PProcessFactoryVersion to query, with a QueryBuilder comparison operator.
 void setQueryPProcessId(java.lang.String x)
          Set the PProcessId to query, with a QueryBuilder comparison operator.
 void setQueryPProcessId(java.lang.String x, java.lang.String cmp_op)
          Set the PProcessId to query, with a QueryBuilder comparison operator.
 void setQueryPProcessName(java.lang.String x)
          Set the PProcessName to query, with a QueryBuilder comparison operator.
 void setQueryPProcessName(java.lang.String x, java.lang.String cmp_op)
          Set the PProcessName to query, with a QueryBuilder comparison operator.
 void setQueryProcessDefinitionId(java.lang.String x)
          Set the ProcessDefinitionId to query, with a QueryBuilder comparison operator.
 void setQueryProcessDefinitionId(java.lang.String x, java.lang.String cmp_op)
          Set the ProcessDefinitionId to query, with a QueryBuilder comparison operator.
 void setQueryProcessDefinitionName(java.lang.String x)
          Set the ProcessDefinitionName to query, with a QueryBuilder comparison operator.
 void setQueryProcessDefinitionName(java.lang.String x, java.lang.String cmp_op)
          Set the ProcessDefinitionName to query, with a QueryBuilder comparison operator.
 void setQueryProcessDuration(long x)
          Set the ProcessDuration to query, with a QueryBuilder comparison operator.
 void setQueryProcessDuration(long x, java.lang.String cmp_op)
          Set the ProcessDuration to query, with a QueryBuilder comparison operator.
 void setQueryProcessFactoryName(java.lang.String x)
          Set the ProcessFactoryName to query, with a QueryBuilder comparison operator.
 void setQueryProcessFactoryName(java.lang.String x, java.lang.String cmp_op)
          Set the ProcessFactoryName to query, with a QueryBuilder comparison operator.
 void setQueryProcessFactoryVersion(java.lang.String x)
          Set the ProcessFactoryVersion to query, with a QueryBuilder comparison operator.
 void setQueryProcessFactoryVersion(java.lang.String x, java.lang.String cmp_op)
          Set the ProcessFactoryVersion to query, with a QueryBuilder comparison operator.
 void setQueryProcessId(java.lang.String x)
          Set the ProcessId to query, with a QueryBuilder comparison operator.
 void setQueryProcessId(java.lang.String x, java.lang.String cmp_op)
          Set the ProcessId to query, with a QueryBuilder comparison operator.
 void setQueryProcessName(java.lang.String x)
          Set the ProcessName to query, with a QueryBuilder comparison operator.
 void setQueryProcessName(java.lang.String x, java.lang.String cmp_op)
          Set the ProcessName to query, with a QueryBuilder comparison operator.
 void setQueryResumedByUsername(java.lang.String x)
          Set the ResumedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryResumedByUsername(java.lang.String x, java.lang.String cmp_op)
          Set the ResumedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryResumedTime(long x)
          Set the ResumedTime to query, with a QueryBuilder comparison operator.
 void setQueryResumedTime(long x, java.lang.String cmp_op)
          Set the ResumedTime to query, with a QueryBuilder comparison operator.
 void setQueryResumedTimeTZO(long x)
          Set the ResumedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryResumedTimeTZO(long x, java.lang.String cmp_op)
          Set the ResumedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryStartedByUsername(java.lang.String x)
          Set the StartedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryStartedByUsername(java.lang.String x, java.lang.String cmp_op)
          Set the StartedByUsername to query, with a QueryBuilder comparison operator.
 void setQueryStartedTime(long x)
          Set the StartedTime to query, with a QueryBuilder comparison operator.
 void setQueryStartedTime(long x, java.lang.String cmp_op)
          Set the StartedTime to query, with a QueryBuilder comparison operator.
 void setQueryStartedTimeTZO(long x)
          Set the StartedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQueryStartedTimeTZO(long x, java.lang.String cmp_op)
          Set the StartedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQuerySuspendedByUsername(java.lang.String x)
          Set the SuspendedByUsername to query, with a QueryBuilder comparison operator.
 void setQuerySuspendedByUsername(java.lang.String x, java.lang.String cmp_op)
          Set the SuspendedByUsername to query, with a QueryBuilder comparison operator.
 void setQuerySuspendedTime(long x)
          Set the SuspendedTime to query, with a QueryBuilder comparison operator.
 void setQuerySuspendedTime(long x, java.lang.String cmp_op)
          Set the SuspendedTime to query, with a QueryBuilder comparison operator.
 void setQuerySuspendedTimeTZO(long x)
          Set the SuspendedTimeTZO to query, with a QueryBuilder comparison operator.
 void setQuerySuspendedTimeTZO(long x, java.lang.String cmp_op)
          Set the SuspendedTimeTZO to query, with a QueryBuilder comparison operator.
protected  void setQueryTimeLimit(int qTimeLimit)
          Sets attribute QueryTimeLimit.
 void setReadSkip(int newReadSkip)
          Set the readSkip number of the query
 void setUnique(boolean newUnique)
          Set the unique flag of the query
 void setUserMatchClosedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchCreatedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchLastState(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPackageId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPActivityDefinitionId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPActivityDefinitionName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPActivityId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPPackageId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPProcessDefinitionId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPProcessDefinitionName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPProcessFactoryName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPProcessFactoryVersion(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPProcessId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchPProcessName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchProcessDefinitionId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchProcessDefinitionName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchProcessFactoryName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchProcessFactoryVersion(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchProcessId(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchProcessName(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchResumedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchStartedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserMatchSuspendedByUsername(java.lang.String x)
          Deprecated. Use comparison operators instead WebDocWf extension
 void setUserStringAppendWildcard(boolean userStringAppendWildcard)
          Set user string append wildcard.
 void setUserStringSingleWildcard(java.lang.String newUserStringSingleWildcard)
          Set user string single wildcard.
 void setUserStringSingleWildcardEscape(java.lang.String newUserStringSingleWildcardEscape)
          Set user string single wildcard escape.
 void setUserStringTrim(boolean userStringTrim)
          Set user string trim.
 void setUserStringWildcard(java.lang.String newUserStringWildcard)
          Set user string wildcard.
 void setUserStringWildcardEscape(java.lang.String newUserStringWildcardEscape)
          Set user string wildcard escape.
 void writeXML(java.io.Writer ow)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProcessHistoryInfoQuery

public ProcessHistoryInfoQuery()
Public constructor.


ProcessHistoryInfoQuery

public ProcessHistoryInfoQuery(com.lutris.appserver.server.sql.DBTransaction dbTrans)
Public constructor.

Parameters:
dbTrans - current database transaction
Method Detail

getLogicalDatabase

public java.lang.String getLogicalDatabase()
Return logical name of the database that ProcessHistoryInfoQuery object uses

Returns:
param logical database name

getStatement

public java.sql.PreparedStatement getStatement()
Return java.sql.PreparedStatement from QueryBuilder class

Specified by:
getStatement in interface com.lutris.appserver.server.sql.ExtendedQuery
Returns:
PreparedStatement from this query object.

setLogicalDatabase

public void setLogicalDatabase(java.lang.String dbName)
                        throws java.sql.SQLException,
                               com.lutris.appserver.server.sql.DatabaseManagerException
Change logical database to another logical database (which name is dbName)

Parameters:
dbName - the logical name of the database
Throws:
java.sql.SQLException
com.lutris.appserver.server.sql.DatabaseManagerException

setUnique

public void setUnique(boolean newUnique)
Set the unique flag of the query

Parameters:
newUnique - The unique flag for the query WebDocWf extension

getUnique

public boolean getUnique()
Get the unique flag of the query

Returns:
The unique flag of the query WebDocWf extension

setReadSkip

public void setReadSkip(int newReadSkip)
Set the readSkip number of the query

Parameters:
newReadSkip - The number of results to skip. WebDocWf extension

getReadSkip

public int getReadSkip()
Get the readSkip number of the query

Returns:
The number of rows which are skipped WebDocWf extension

setDatabaseLimit

public void setDatabaseLimit(int newLimit)
Set the database limit of the query

Parameters:
newLimit - The limit for the query WebDocWf extension

getDatabaseLimit

public int getDatabaseLimit()
Get the database limit of the query

Returns:
The database limit of the query WebDocWf extension

getDatabaseLimitExceeded

public boolean getDatabaseLimitExceeded()
Get the database limit exceeded flag of the query.

Returns:
The database limit exceeded flag of the query True if there would have been more rows than the limit, otherwise false. WebDocWf extension

hitDatabase

public void hitDatabase()
Set that all queries go to database, not to cache.


setUserStringWildcard

public void setUserStringWildcard(java.lang.String newUserStringWildcard)
Set user string wildcard.

Parameters:
newUserStringWildcard - New user string wildcard. WebDocWf extension

setUserStringSingleWildcard

public void setUserStringSingleWildcard(java.lang.String newUserStringSingleWildcard)
Set user string single wildcard.

Parameters:
newUserStringSingleWildcard - New user string single wildcard. WebDocWf extension

setUserStringSingleWildcardEscape

public void setUserStringSingleWildcardEscape(java.lang.String newUserStringSingleWildcardEscape)
Set user string single wildcard escape.

Parameters:
newUserStringSingleWildcardEscape - New user string single wildcard escape. WebDocWf extension

setUserStringWildcardEscape

public void setUserStringWildcardEscape(java.lang.String newUserStringWildcardEscape)
Set user string wildcard escape.

Parameters:
newUserStringWildcardEscape - New user string wildcard escape. WebDocWf extension

setUserStringAppendWildcard

public void setUserStringAppendWildcard(boolean userStringAppendWildcard)
Set user string append wildcard.

Parameters:
userStringAppendWildcard - New user string append wildcard. WebDocWf extension

setUserStringTrim

public void setUserStringTrim(boolean userStringTrim)
Set user string trim.

Parameters:
userStringTrim - New user string trim. WebDocWf extension

getUserStringWildcard

public java.lang.String getUserStringWildcard()
Get user string wildcard.

Returns:
User string wildcard. WebDocWf extension

getUserStringSingleWildcard

public java.lang.String getUserStringSingleWildcard()
Get user string single wildcard.

Returns:
User string single wildcard. WebDocWf extension

getUserStringSingleWildcardEscape

public java.lang.String getUserStringSingleWildcardEscape()
Get user string single wildcard escape.

Returns:
User string single wildcard escape. WebDocWf extension

getUserStringWildcardEscape

public java.lang.String getUserStringWildcardEscape()
Get user string wildcard escape.

Returns:
User string wildcard escape. WebDocWf extension

getUserStringAppendWildcard

public boolean getUserStringAppendWildcard()
Get user string append wildcard.

Returns:
User string append wildcard. WebDocWf extension

getUserStringTrim

public boolean getUserStringTrim()
Get user string trim.

Returns:
User string trim. WebDocWf extension

setMaxRows

public void setMaxRows(int maxRows)
                throws com.lutris.dods.builder.generator.query.DataObjectException,
                       com.lutris.dods.builder.generator.query.NonUniqueQueryException
Limit the number of rows (DOs) returned. NOTE: When setting a limit on rows returned by a query, you usually want to use a call to an addOrderBy method to cause the most interesting rows to be returned first. However, the DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database. So, setMaxRows also forces the query to hit the database.

Parameters:
maxRows - Max number of rows (DOs) returned.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.NonUniqueQueryException - If too many rows were found.

getMaxRows

public int getMaxRows()
Return limit of rows (DOs) returned.

Returns:
Max number of rows (DOs) returned.

isOrderRelevant

public boolean isOrderRelevant()
Returns attribute orderRelevant.

Returns:
true if order of query results is relavant, otherwise false.

setOrderRelevant

public void setOrderRelevant(boolean newOrderRelevant)
Sets attribute orderRelevant.

Parameters:
newOrderRelevant - new value of attribute orderRelavant.

setQueryTimeLimit

protected void setQueryTimeLimit(int qTimeLimit)
Sets attribute QueryTimeLimit.

Parameters:
qTimeLimit - new value of attribute QueryTimeLimit.

setMaxExecuteTime

protected void setMaxExecuteTime(int maxExeTime)
Sets attribute maxExecuteTime.

Parameters:
maxExeTime - new value of attribute maxExecuteTime.

getCachedResults

public org.enhydra.dods.cache.QueryResult getCachedResults(org.enhydra.dods.cache.QueryResult result)
                                                    throws com.lutris.dods.builder.generator.query.DataObjectException
Return QueryResult with read DOs or DataStructs from caches.

Parameters:
result - QueryResult object with result oids.
Returns:
QueryResult object with filled DOs or DataStructs that are found in the cache.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.

writeXML

public void writeXML(java.io.Writer ow)
              throws com.lutris.dods.builder.generator.query.DataObjectException,
                     com.lutris.dods.builder.generator.query.NonUniqueQueryException
Throws:
com.lutris.dods.builder.generator.query.DataObjectException
com.lutris.dods.builder.generator.query.NonUniqueQueryException

getDOArray

public ProcessHistoryInfoDO[] getDOArray()
                                  throws com.lutris.dods.builder.generator.query.DataObjectException,
                                         com.lutris.dods.builder.generator.query.NonUniqueQueryException
Return array of DOs constructed from ResultSet returned by query.

Returns:
Array of DOs constructed from ResultSet returned by query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.NonUniqueQueryException - If too many rows were found.

getNextDO

public ProcessHistoryInfoDO getNextDO()
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.NonUniqueQueryException
Return successive DOs from array built from ResultSet returned by query.

Returns:
DOs from array built from ResultSet returned by query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.NonUniqueQueryException - If too many rows were found.

setQueryOId

public void setQueryOId(com.lutris.appserver.server.sql.ObjectId oid)
Set the OID to query. WARNING! This method assumes that table SHKProcessHistoryInfo has a column named "oid". This method is called from the DO classes to retrieve an object by id.

Parameters:
oid - The object id to query.

setQueryHandle

public void setQueryHandle(java.lang.String handle)
                    throws com.lutris.appserver.server.sql.ObjectIdException
Set the object handle to query. This is a variant of setQueryOId().

Parameters:
handle - The string version of the id to query.
Throws:
com.lutris.appserver.server.sql.ObjectIdException

requireUniqueInstance

public void requireUniqueInstance()
Set "unique instance" assertion bit. The first call to the next() method will throw an exception if more than one object was found.


setLoadData

public void setLoadData(boolean newValue)
Set loadData parameter. if parameter is set to true, Query select t.* is performed.

Parameters:
newValue - boolean (true/false)

getLoadData

public boolean getLoadData()
Return true if Query is prepared for select t1.* statement. Otherwise return false.

Returns:
boolean (true/false)

reset

public void reset()
Reset the query parameters.


executeQuery

public java.sql.ResultSet executeQuery(com.lutris.appserver.server.sql.DBConnection conn)
                                throws java.sql.SQLException
Method to query objects from the database. The following call in runQuery() dbQuery.query( this ); causes the dbQuery object to invoke executeQuery()

Specified by:
executeQuery in interface com.lutris.appserver.server.sql.Query
Parameters:
conn - Handle to database connection.
Returns:
ResultSet with the results of the query.
Throws:
java.sql.SQLException - If a database access error occurs.

next

public java.lang.Object next(java.sql.ResultSet rs)
                      throws java.sql.SQLException,
                             com.lutris.appserver.server.sql.ObjectIdException
WARNING! This method is disabled. It's implementation is forced by the Query interface. This method is disabled for 2 reasons: 1) the getDOArray() and getNextDO() methods are better because they return DOs instead of JDBC objects. 2) the ceInternal() method throws an exception that we cannot reasonably handle here, and that we cannot throw from here.

Specified by:
next in interface com.lutris.appserver.server.sql.Query
Parameters:
rs - JDBC result set from which the next object will be instantiated.
Returns:
Next result.
Throws:
java.sql.SQLException - If a database access error occurs.
com.lutris.appserver.server.sql.ObjectIdException - If an invalid object id was queried from the database.

convertUserSearchValue

public java.lang.String convertUserSearchValue(java.lang.String userSearchValue)
Convert a String with user wildcards into a string with DB wildcards

Parameters:
userSearchValue - The string with user wildcards
Returns:
The string with DB wildcards WebDocWf extension

containsWildcards

public boolean containsWildcards(java.lang.String dbSearchValue)
Check whether a string contains DB wildcards

Parameters:
dbSearchValue - The string with possible DB wildcards
Returns:
Whether a string contains DB wildcards WebDocWf extension

getCount

public int getCount()
             throws com.lutris.dods.builder.generator.query.NonUniqueQueryException,
                    com.lutris.dods.builder.generator.query.DataObjectException,
                    java.sql.SQLException,
                    com.lutris.appserver.server.sql.DatabaseManagerException
Get the rowcount of the query If possible, do it without reading all rows

Returns:
The row count
Throws:
com.lutris.dods.builder.generator.query.NonUniqueQueryException
com.lutris.dods.builder.generator.query.DataObjectException
java.sql.SQLException
com.lutris.appserver.server.sql.DatabaseManagerException - WebDocWf extension

set_CursorType

public void set_CursorType(int resultSetType,
                           int resultSetConcurrency)
set the current cursor type - overrides default value from dbVendorConf file.

Parameters:
resultSetType - a result set type; one of ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE, or ResultSet.TYPE_SCROLL_SENSITIVE.
resultSetConcurrency - a concurrency type; one of ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE.

set_FetchSize

public void set_FetchSize(int iCurrentFetchSizeIn)
Set fetch size for this query

Parameters:
iCurrentFetchSizeIn - Query fetch size.

get_FetchSize

public int get_FetchSize()
reads the current fetchsize for this query

Returns:
the current fetchsize; if -1 the no fetchsize is defined, defaultFetchSize will be use if defined

get_QueryTimeout

public int get_QueryTimeout()
Reads the current queryTimeout for this query.

Returns:
the current queryTimeout;

set_QueryTimeout

public void set_QueryTimeout(int iQueryTimeoutIn)
Sets the current queryTimeout for this query.

Parameters:
iQueryTimeoutIn - current queryTimeout.

selectCount

public int selectCount()
                throws java.sql.SQLException,
                       com.lutris.appserver.server.sql.DatabaseManagerException
Get the rowcount of the query by using count(*) in the DB

Returns:
The row count.
Throws:
java.sql.SQLException
com.lutris.appserver.server.sql.DatabaseManagerException - WebDocWf extension

setQueryProcessId

public void setQueryProcessId(java.lang.String x,
                              java.lang.String cmp_op)
                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                              com.lutris.dods.builder.generator.query.QueryException
Set the ProcessId to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessId

public void setQueryProcessId(java.lang.String x)
                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                              com.lutris.dods.builder.generator.query.QueryException
Set the ProcessId to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessId

public void addOrderByProcessId(boolean direction_flag)
Add ProcessId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessId

public void addOrderByProcessId()
Add ProcessId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchProcessId

public void setUserMatchProcessId(java.lang.String x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessId to query with a user wildcard string

Parameters:
x - The ProcessId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchProcessId

public void setDBMatchProcessId(java.lang.String x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessId to query with a DB wildcard string

Parameters:
x - The ProcessId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryProcessName

public void setQueryProcessName(java.lang.String x,
                                java.lang.String cmp_op)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the ProcessName to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessName

public void setQueryProcessName(java.lang.String x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the ProcessName to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessName

public void addOrderByProcessName(boolean direction_flag)
Add ProcessName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessName

public void addOrderByProcessName()
Add ProcessName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchProcessName

public void setUserMatchProcessName(java.lang.String x)
                             throws com.lutris.dods.builder.generator.query.DataObjectException,
                                    com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessName to query with a user wildcard string

Parameters:
x - The ProcessName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchProcessName

public void setDBMatchProcessName(java.lang.String x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessName to query with a DB wildcard string

Parameters:
x - The ProcessName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryProcessFactoryName

public void setQueryProcessFactoryName(java.lang.String x,
                                       java.lang.String cmp_op)
                                throws com.lutris.dods.builder.generator.query.DataObjectException,
                                       com.lutris.dods.builder.generator.query.QueryException
Set the ProcessFactoryName to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessFactoryName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessFactoryName

public void setQueryProcessFactoryName(java.lang.String x)
                                throws com.lutris.dods.builder.generator.query.DataObjectException,
                                       com.lutris.dods.builder.generator.query.QueryException
Set the ProcessFactoryName to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessFactoryName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessFactoryName

public void addOrderByProcessFactoryName(boolean direction_flag)
Add ProcessFactoryName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessFactoryName

public void addOrderByProcessFactoryName()
Add ProcessFactoryName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchProcessFactoryName

public void setUserMatchProcessFactoryName(java.lang.String x)
                                    throws com.lutris.dods.builder.generator.query.DataObjectException,
                                           com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessFactoryName to query with a user wildcard string

Parameters:
x - The ProcessFactoryName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchProcessFactoryName

public void setDBMatchProcessFactoryName(java.lang.String x)
                                  throws com.lutris.dods.builder.generator.query.DataObjectException,
                                         com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessFactoryName to query with a DB wildcard string

Parameters:
x - The ProcessFactoryName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryProcessFactoryVersion

public void setQueryProcessFactoryVersion(java.lang.String x,
                                          java.lang.String cmp_op)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Set the ProcessFactoryVersion to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessFactoryVersion of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessFactoryVersion

public void setQueryProcessFactoryVersion(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Set the ProcessFactoryVersion to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessFactoryVersion of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessFactoryVersion

public void addOrderByProcessFactoryVersion(boolean direction_flag)
Add ProcessFactoryVersion to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessFactoryVersion

public void addOrderByProcessFactoryVersion()
Add ProcessFactoryVersion to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchProcessFactoryVersion

public void setUserMatchProcessFactoryVersion(java.lang.String x)
                                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                                              com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessFactoryVersion to query with a user wildcard string

Parameters:
x - The ProcessFactoryVersion of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchProcessFactoryVersion

public void setDBMatchProcessFactoryVersion(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessFactoryVersion to query with a DB wildcard string

Parameters:
x - The ProcessFactoryVersion of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryProcessDefinitionId

public void setQueryProcessDefinitionId(java.lang.String x,
                                        java.lang.String cmp_op)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Set the ProcessDefinitionId to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessDefinitionId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessDefinitionId

public void setQueryProcessDefinitionId(java.lang.String x)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Set the ProcessDefinitionId to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessDefinitionId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessDefinitionId

public void addOrderByProcessDefinitionId(boolean direction_flag)
Add ProcessDefinitionId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessDefinitionId

public void addOrderByProcessDefinitionId()
Add ProcessDefinitionId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchProcessDefinitionId

public void setUserMatchProcessDefinitionId(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessDefinitionId to query with a user wildcard string

Parameters:
x - The ProcessDefinitionId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchProcessDefinitionId

public void setDBMatchProcessDefinitionId(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessDefinitionId to query with a DB wildcard string

Parameters:
x - The ProcessDefinitionId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryProcessDefinitionName

public void setQueryProcessDefinitionName(java.lang.String x,
                                          java.lang.String cmp_op)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Set the ProcessDefinitionName to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessDefinitionName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessDefinitionName

public void setQueryProcessDefinitionName(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Set the ProcessDefinitionName to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessDefinitionName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessDefinitionName

public void addOrderByProcessDefinitionName(boolean direction_flag)
Add ProcessDefinitionName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessDefinitionName

public void addOrderByProcessDefinitionName()
Add ProcessDefinitionName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchProcessDefinitionName

public void setUserMatchProcessDefinitionName(java.lang.String x)
                                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                                              com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessDefinitionName to query with a user wildcard string

Parameters:
x - The ProcessDefinitionName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchProcessDefinitionName

public void setDBMatchProcessDefinitionName(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ProcessDefinitionName to query with a DB wildcard string

Parameters:
x - The ProcessDefinitionName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPackageId

public void setQueryPackageId(java.lang.String x,
                              java.lang.String cmp_op)
                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                              com.lutris.dods.builder.generator.query.QueryException
Set the PackageId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PackageId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPackageId

public void setQueryPackageId(java.lang.String x)
                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                              com.lutris.dods.builder.generator.query.QueryException
Set the PackageId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PackageId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPackageId

public void addOrderByPackageId(boolean direction_flag)
Add PackageId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPackageId

public void addOrderByPackageId()
Add PackageId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPackageId

public void setUserMatchPackageId(java.lang.String x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PackageId to query with a user wildcard string

Parameters:
x - The PackageId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPackageId

public void setDBMatchPackageId(java.lang.String x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PackageId to query with a DB wildcard string

Parameters:
x - The PackageId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPActivityId

public void setQueryPActivityId(java.lang.String x,
                                java.lang.String cmp_op)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the PActivityId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PActivityId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPActivityId

public void setQueryPActivityId(java.lang.String x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the PActivityId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PActivityId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPActivityId

public void addOrderByPActivityId(boolean direction_flag)
Add PActivityId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPActivityId

public void addOrderByPActivityId()
Add PActivityId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPActivityId

public void setUserMatchPActivityId(java.lang.String x)
                             throws com.lutris.dods.builder.generator.query.DataObjectException,
                                    com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PActivityId to query with a user wildcard string

Parameters:
x - The PActivityId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPActivityId

public void setDBMatchPActivityId(java.lang.String x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PActivityId to query with a DB wildcard string

Parameters:
x - The PActivityId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPProcessId

public void setQueryPProcessId(java.lang.String x,
                               java.lang.String cmp_op)
                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                               com.lutris.dods.builder.generator.query.QueryException
Set the PProcessId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPProcessId

public void setQueryPProcessId(java.lang.String x)
                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                               com.lutris.dods.builder.generator.query.QueryException
Set the PProcessId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPProcessId

public void addOrderByPProcessId(boolean direction_flag)
Add PProcessId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPProcessId

public void addOrderByPProcessId()
Add PProcessId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPProcessId

public void setUserMatchPProcessId(java.lang.String x)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessId to query with a user wildcard string

Parameters:
x - The PProcessId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPProcessId

public void setDBMatchPProcessId(java.lang.String x)
                          throws com.lutris.dods.builder.generator.query.DataObjectException,
                                 com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessId to query with a DB wildcard string

Parameters:
x - The PProcessId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPProcessName

public void setQueryPProcessName(java.lang.String x,
                                 java.lang.String cmp_op)
                          throws com.lutris.dods.builder.generator.query.DataObjectException,
                                 com.lutris.dods.builder.generator.query.QueryException
Set the PProcessName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPProcessName

public void setQueryPProcessName(java.lang.String x)
                          throws com.lutris.dods.builder.generator.query.DataObjectException,
                                 com.lutris.dods.builder.generator.query.QueryException
Set the PProcessName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPProcessName

public void addOrderByPProcessName(boolean direction_flag)
Add PProcessName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPProcessName

public void addOrderByPProcessName()
Add PProcessName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPProcessName

public void setUserMatchPProcessName(java.lang.String x)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessName to query with a user wildcard string

Parameters:
x - The PProcessName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPProcessName

public void setDBMatchPProcessName(java.lang.String x)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessName to query with a DB wildcard string

Parameters:
x - The PProcessName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPProcessFactoryName

public void setQueryPProcessFactoryName(java.lang.String x,
                                        java.lang.String cmp_op)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Set the PProcessFactoryName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessFactoryName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPProcessFactoryName

public void setQueryPProcessFactoryName(java.lang.String x)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Set the PProcessFactoryName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessFactoryName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPProcessFactoryName

public void addOrderByPProcessFactoryName(boolean direction_flag)
Add PProcessFactoryName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPProcessFactoryName

public void addOrderByPProcessFactoryName()
Add PProcessFactoryName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPProcessFactoryName

public void setUserMatchPProcessFactoryName(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessFactoryName to query with a user wildcard string

Parameters:
x - The PProcessFactoryName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPProcessFactoryName

public void setDBMatchPProcessFactoryName(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessFactoryName to query with a DB wildcard string

Parameters:
x - The PProcessFactoryName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPProcessFactoryVersion

public void setQueryPProcessFactoryVersion(java.lang.String x,
                                           java.lang.String cmp_op)
                                    throws com.lutris.dods.builder.generator.query.DataObjectException,
                                           com.lutris.dods.builder.generator.query.QueryException
Set the PProcessFactoryVersion to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessFactoryVersion of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPProcessFactoryVersion

public void setQueryPProcessFactoryVersion(java.lang.String x)
                                    throws com.lutris.dods.builder.generator.query.DataObjectException,
                                           com.lutris.dods.builder.generator.query.QueryException
Set the PProcessFactoryVersion to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessFactoryVersion of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPProcessFactoryVersion

public void addOrderByPProcessFactoryVersion(boolean direction_flag)
Add PProcessFactoryVersion to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPProcessFactoryVersion

public void addOrderByPProcessFactoryVersion()
Add PProcessFactoryVersion to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPProcessFactoryVersion

public void setUserMatchPProcessFactoryVersion(java.lang.String x)
                                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                                               com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessFactoryVersion to query with a user wildcard string

Parameters:
x - The PProcessFactoryVersion of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPProcessFactoryVersion

public void setDBMatchPProcessFactoryVersion(java.lang.String x)
                                      throws com.lutris.dods.builder.generator.query.DataObjectException,
                                             com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessFactoryVersion to query with a DB wildcard string

Parameters:
x - The PProcessFactoryVersion of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPActivityDefinitionId

public void setQueryPActivityDefinitionId(java.lang.String x,
                                          java.lang.String cmp_op)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Set the PActivityDefinitionId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PActivityDefinitionId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPActivityDefinitionId

public void setQueryPActivityDefinitionId(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Set the PActivityDefinitionId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PActivityDefinitionId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPActivityDefinitionId

public void addOrderByPActivityDefinitionId(boolean direction_flag)
Add PActivityDefinitionId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPActivityDefinitionId

public void addOrderByPActivityDefinitionId()
Add PActivityDefinitionId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPActivityDefinitionId

public void setUserMatchPActivityDefinitionId(java.lang.String x)
                                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                                              com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PActivityDefinitionId to query with a user wildcard string

Parameters:
x - The PActivityDefinitionId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPActivityDefinitionId

public void setDBMatchPActivityDefinitionId(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PActivityDefinitionId to query with a DB wildcard string

Parameters:
x - The PActivityDefinitionId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPActivityDefinitionName

public void setQueryPActivityDefinitionName(java.lang.String x,
                                            java.lang.String cmp_op)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Set the PActivityDefinitionName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PActivityDefinitionName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPActivityDefinitionName

public void setQueryPActivityDefinitionName(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Set the PActivityDefinitionName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PActivityDefinitionName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPActivityDefinitionName

public void addOrderByPActivityDefinitionName(boolean direction_flag)
Add PActivityDefinitionName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPActivityDefinitionName

public void addOrderByPActivityDefinitionName()
Add PActivityDefinitionName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPActivityDefinitionName

public void setUserMatchPActivityDefinitionName(java.lang.String x)
                                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                                com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PActivityDefinitionName to query with a user wildcard string

Parameters:
x - The PActivityDefinitionName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPActivityDefinitionName

public void setDBMatchPActivityDefinitionName(java.lang.String x)
                                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                                              com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PActivityDefinitionName to query with a DB wildcard string

Parameters:
x - The PActivityDefinitionName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPProcessDefinitionId

public void setQueryPProcessDefinitionId(java.lang.String x,
                                         java.lang.String cmp_op)
                                  throws com.lutris.dods.builder.generator.query.DataObjectException,
                                         com.lutris.dods.builder.generator.query.QueryException
Set the PProcessDefinitionId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessDefinitionId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPProcessDefinitionId

public void setQueryPProcessDefinitionId(java.lang.String x)
                                  throws com.lutris.dods.builder.generator.query.DataObjectException,
                                         com.lutris.dods.builder.generator.query.QueryException
Set the PProcessDefinitionId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessDefinitionId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPProcessDefinitionId

public void addOrderByPProcessDefinitionId(boolean direction_flag)
Add PProcessDefinitionId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPProcessDefinitionId

public void addOrderByPProcessDefinitionId()
Add PProcessDefinitionId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPProcessDefinitionId

public void setUserMatchPProcessDefinitionId(java.lang.String x)
                                      throws com.lutris.dods.builder.generator.query.DataObjectException,
                                             com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessDefinitionId to query with a user wildcard string

Parameters:
x - The PProcessDefinitionId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPProcessDefinitionId

public void setDBMatchPProcessDefinitionId(java.lang.String x)
                                    throws com.lutris.dods.builder.generator.query.DataObjectException,
                                           com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessDefinitionId to query with a DB wildcard string

Parameters:
x - The PProcessDefinitionId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPProcessDefinitionName

public void setQueryPProcessDefinitionName(java.lang.String x,
                                           java.lang.String cmp_op)
                                    throws com.lutris.dods.builder.generator.query.DataObjectException,
                                           com.lutris.dods.builder.generator.query.QueryException
Set the PProcessDefinitionName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessDefinitionName of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPProcessDefinitionName

public void setQueryPProcessDefinitionName(java.lang.String x)
                                    throws com.lutris.dods.builder.generator.query.DataObjectException,
                                           com.lutris.dods.builder.generator.query.QueryException
Set the PProcessDefinitionName to query, with a QueryBuilder comparison operator.

Parameters:
x - The PProcessDefinitionName of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPProcessDefinitionName

public void addOrderByPProcessDefinitionName(boolean direction_flag)
Add PProcessDefinitionName to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPProcessDefinitionName

public void addOrderByPProcessDefinitionName()
Add PProcessDefinitionName to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPProcessDefinitionName

public void setUserMatchPProcessDefinitionName(java.lang.String x)
                                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                                               com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessDefinitionName to query with a user wildcard string

Parameters:
x - The PProcessDefinitionName of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPProcessDefinitionName

public void setDBMatchPProcessDefinitionName(java.lang.String x)
                                      throws com.lutris.dods.builder.generator.query.DataObjectException,
                                             com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PProcessDefinitionName to query with a DB wildcard string

Parameters:
x - The PProcessDefinitionName of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryPPackageId

public void setQueryPPackageId(java.lang.String x,
                               java.lang.String cmp_op)
                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                               com.lutris.dods.builder.generator.query.QueryException
Set the PPackageId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PPackageId of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryPPackageId

public void setQueryPPackageId(java.lang.String x)
                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                               com.lutris.dods.builder.generator.query.QueryException
Set the PPackageId to query, with a QueryBuilder comparison operator.

Parameters:
x - The PPackageId of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByPPackageId

public void addOrderByPPackageId(boolean direction_flag)
Add PPackageId to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByPPackageId

public void addOrderByPPackageId()
Add PPackageId to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchPPackageId

public void setUserMatchPPackageId(java.lang.String x)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PPackageId to query with a user wildcard string

Parameters:
x - The PPackageId of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchPPackageId

public void setDBMatchPPackageId(java.lang.String x)
                          throws com.lutris.dods.builder.generator.query.DataObjectException,
                                 com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the PPackageId to query with a DB wildcard string

Parameters:
x - The PPackageId of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryCreatedTime

public void setQueryCreatedTime(long x,
                                java.lang.String cmp_op)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the CreatedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The CreatedTime of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryCreatedTime

public void setQueryCreatedTime(long x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the CreatedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The CreatedTime of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByCreatedTime

public void addOrderByCreatedTime(boolean direction_flag)
Add CreatedTime to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByCreatedTime

public void addOrderByCreatedTime()
Add CreatedTime to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryCreatedTimeTZO

public void setQueryCreatedTimeTZO(long x,
                                   java.lang.String cmp_op)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Set the CreatedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The CreatedTimeTZO of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryCreatedTimeTZO

public void setQueryCreatedTimeTZO(long x)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Set the CreatedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The CreatedTimeTZO of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByCreatedTimeTZO

public void addOrderByCreatedTimeTZO(boolean direction_flag)
Add CreatedTimeTZO to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByCreatedTimeTZO

public void addOrderByCreatedTimeTZO()
Add CreatedTimeTZO to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryStartedTime

public void setQueryStartedTime(long x,
                                java.lang.String cmp_op)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the StartedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The StartedTime of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryStartedTime

public void setQueryStartedTime(long x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the StartedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The StartedTime of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByStartedTime

public void addOrderByStartedTime(boolean direction_flag)
Add StartedTime to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByStartedTime

public void addOrderByStartedTime()
Add StartedTime to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryStartedTimeTZO

public void setQueryStartedTimeTZO(long x,
                                   java.lang.String cmp_op)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Set the StartedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The StartedTimeTZO of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryStartedTimeTZO

public void setQueryStartedTimeTZO(long x)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Set the StartedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The StartedTimeTZO of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByStartedTimeTZO

public void addOrderByStartedTimeTZO(boolean direction_flag)
Add StartedTimeTZO to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByStartedTimeTZO

public void addOrderByStartedTimeTZO()
Add StartedTimeTZO to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQuerySuspendedTime

public void setQuerySuspendedTime(long x,
                                  java.lang.String cmp_op)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Set the SuspendedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The SuspendedTime of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQuerySuspendedTime

public void setQuerySuspendedTime(long x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Set the SuspendedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The SuspendedTime of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderBySuspendedTime

public void addOrderBySuspendedTime(boolean direction_flag)
Add SuspendedTime to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderBySuspendedTime

public void addOrderBySuspendedTime()
Add SuspendedTime to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQuerySuspendedTimeTZO

public void setQuerySuspendedTimeTZO(long x,
                                     java.lang.String cmp_op)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Set the SuspendedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The SuspendedTimeTZO of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQuerySuspendedTimeTZO

public void setQuerySuspendedTimeTZO(long x)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Set the SuspendedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The SuspendedTimeTZO of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderBySuspendedTimeTZO

public void addOrderBySuspendedTimeTZO(boolean direction_flag)
Add SuspendedTimeTZO to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderBySuspendedTimeTZO

public void addOrderBySuspendedTimeTZO()
Add SuspendedTimeTZO to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryResumedTime

public void setQueryResumedTime(long x,
                                java.lang.String cmp_op)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the ResumedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The ResumedTime of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryResumedTime

public void setQueryResumedTime(long x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Set the ResumedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The ResumedTime of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByResumedTime

public void addOrderByResumedTime(boolean direction_flag)
Add ResumedTime to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByResumedTime

public void addOrderByResumedTime()
Add ResumedTime to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryResumedTimeTZO

public void setQueryResumedTimeTZO(long x,
                                   java.lang.String cmp_op)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Set the ResumedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The ResumedTimeTZO of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryResumedTimeTZO

public void setQueryResumedTimeTZO(long x)
                            throws com.lutris.dods.builder.generator.query.DataObjectException,
                                   com.lutris.dods.builder.generator.query.QueryException
Set the ResumedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The ResumedTimeTZO of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByResumedTimeTZO

public void addOrderByResumedTimeTZO(boolean direction_flag)
Add ResumedTimeTZO to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByResumedTimeTZO

public void addOrderByResumedTimeTZO()
Add ResumedTimeTZO to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryClosedTime

public void setQueryClosedTime(long x,
                               java.lang.String cmp_op)
                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                               com.lutris.dods.builder.generator.query.QueryException
Set the ClosedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The ClosedTime of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryClosedTime

public void setQueryClosedTime(long x)
                        throws com.lutris.dods.builder.generator.query.DataObjectException,
                               com.lutris.dods.builder.generator.query.QueryException
Set the ClosedTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The ClosedTime of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByClosedTime

public void addOrderByClosedTime(boolean direction_flag)
Add ClosedTime to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByClosedTime

public void addOrderByClosedTime()
Add ClosedTime to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryClosedTimeTZO

public void setQueryClosedTimeTZO(long x,
                                  java.lang.String cmp_op)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Set the ClosedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The ClosedTimeTZO of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryClosedTimeTZO

public void setQueryClosedTimeTZO(long x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Set the ClosedTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The ClosedTimeTZO of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByClosedTimeTZO

public void addOrderByClosedTimeTZO(boolean direction_flag)
Add ClosedTimeTZO to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByClosedTimeTZO

public void addOrderByClosedTimeTZO()
Add ClosedTimeTZO to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryCreatedByUsername

public void setQueryCreatedByUsername(java.lang.String x,
                                      java.lang.String cmp_op)
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.QueryException
Set the CreatedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The CreatedByUsername of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryCreatedByUsername

public void setQueryCreatedByUsername(java.lang.String x)
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.QueryException
Set the CreatedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The CreatedByUsername of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByCreatedByUsername

public void addOrderByCreatedByUsername(boolean direction_flag)
Add CreatedByUsername to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByCreatedByUsername

public void addOrderByCreatedByUsername()
Add CreatedByUsername to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchCreatedByUsername

public void setUserMatchCreatedByUsername(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the CreatedByUsername to query with a user wildcard string

Parameters:
x - The CreatedByUsername of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchCreatedByUsername

public void setDBMatchCreatedByUsername(java.lang.String x)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the CreatedByUsername to query with a DB wildcard string

Parameters:
x - The CreatedByUsername of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryStartedByUsername

public void setQueryStartedByUsername(java.lang.String x,
                                      java.lang.String cmp_op)
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.QueryException
Set the StartedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The StartedByUsername of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryStartedByUsername

public void setQueryStartedByUsername(java.lang.String x)
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.QueryException
Set the StartedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The StartedByUsername of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByStartedByUsername

public void addOrderByStartedByUsername(boolean direction_flag)
Add StartedByUsername to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByStartedByUsername

public void addOrderByStartedByUsername()
Add StartedByUsername to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchStartedByUsername

public void setUserMatchStartedByUsername(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the StartedByUsername to query with a user wildcard string

Parameters:
x - The StartedByUsername of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchStartedByUsername

public void setDBMatchStartedByUsername(java.lang.String x)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the StartedByUsername to query with a DB wildcard string

Parameters:
x - The StartedByUsername of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQuerySuspendedByUsername

public void setQuerySuspendedByUsername(java.lang.String x,
                                        java.lang.String cmp_op)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Set the SuspendedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The SuspendedByUsername of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQuerySuspendedByUsername

public void setQuerySuspendedByUsername(java.lang.String x)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Set the SuspendedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The SuspendedByUsername of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderBySuspendedByUsername

public void addOrderBySuspendedByUsername(boolean direction_flag)
Add SuspendedByUsername to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderBySuspendedByUsername

public void addOrderBySuspendedByUsername()
Add SuspendedByUsername to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchSuspendedByUsername

public void setUserMatchSuspendedByUsername(java.lang.String x)
                                     throws com.lutris.dods.builder.generator.query.DataObjectException,
                                            com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the SuspendedByUsername to query with a user wildcard string

Parameters:
x - The SuspendedByUsername of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchSuspendedByUsername

public void setDBMatchSuspendedByUsername(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the SuspendedByUsername to query with a DB wildcard string

Parameters:
x - The SuspendedByUsername of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryResumedByUsername

public void setQueryResumedByUsername(java.lang.String x,
                                      java.lang.String cmp_op)
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.QueryException
Set the ResumedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The ResumedByUsername of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryResumedByUsername

public void setQueryResumedByUsername(java.lang.String x)
                               throws com.lutris.dods.builder.generator.query.DataObjectException,
                                      com.lutris.dods.builder.generator.query.QueryException
Set the ResumedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The ResumedByUsername of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByResumedByUsername

public void addOrderByResumedByUsername(boolean direction_flag)
Add ResumedByUsername to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByResumedByUsername

public void addOrderByResumedByUsername()
Add ResumedByUsername to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchResumedByUsername

public void setUserMatchResumedByUsername(java.lang.String x)
                                   throws com.lutris.dods.builder.generator.query.DataObjectException,
                                          com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ResumedByUsername to query with a user wildcard string

Parameters:
x - The ResumedByUsername of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchResumedByUsername

public void setDBMatchResumedByUsername(java.lang.String x)
                                 throws com.lutris.dods.builder.generator.query.DataObjectException,
                                        com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ResumedByUsername to query with a DB wildcard string

Parameters:
x - The ResumedByUsername of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryClosedByUsername

public void setQueryClosedByUsername(java.lang.String x,
                                     java.lang.String cmp_op)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Set the ClosedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The ClosedByUsername of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryClosedByUsername

public void setQueryClosedByUsername(java.lang.String x)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Set the ClosedByUsername to query, with a QueryBuilder comparison operator.

Parameters:
x - The ClosedByUsername of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByClosedByUsername

public void addOrderByClosedByUsername(boolean direction_flag)
Add ClosedByUsername to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByClosedByUsername

public void addOrderByClosedByUsername()
Add ClosedByUsername to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchClosedByUsername

public void setUserMatchClosedByUsername(java.lang.String x)
                                  throws com.lutris.dods.builder.generator.query.DataObjectException,
                                         com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ClosedByUsername to query with a user wildcard string

Parameters:
x - The ClosedByUsername of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchClosedByUsername

public void setDBMatchClosedByUsername(java.lang.String x)
                                throws com.lutris.dods.builder.generator.query.DataObjectException,
                                       com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the ClosedByUsername to query with a DB wildcard string

Parameters:
x - The ClosedByUsername of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryLastState

public void setQueryLastState(java.lang.String x,
                              java.lang.String cmp_op)
                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                              com.lutris.dods.builder.generator.query.QueryException
Set the LastState to query, with a QueryBuilder comparison operator.

Parameters:
x - The LastState of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryLastState

public void setQueryLastState(java.lang.String x)
                       throws com.lutris.dods.builder.generator.query.DataObjectException,
                              com.lutris.dods.builder.generator.query.QueryException
Set the LastState to query, with a QueryBuilder comparison operator.

Parameters:
x - The LastState of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByLastState

public void addOrderByLastState(boolean direction_flag)
Add LastState to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByLastState

public void addOrderByLastState()
Add LastState to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setUserMatchLastState

public void setUserMatchLastState(java.lang.String x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the LastState to query with a user wildcard string

Parameters:
x - The LastState of the SHKProcessHistoryInfo to query with user wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setDBMatchLastState

public void setDBMatchLastState(java.lang.String x)
                         throws com.lutris.dods.builder.generator.query.DataObjectException,
                                com.lutris.dods.builder.generator.query.QueryException
Deprecated. Use comparison operators instead WebDocWf extension

Set the LastState to query with a DB wildcard string

Parameters:
x - The LastState of the SHKProcessHistoryInfo to query with DB wildcards
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If a query error occurs.

setQueryLastStateTime

public void setQueryLastStateTime(long x,
                                  java.lang.String cmp_op)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Set the LastStateTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The LastStateTime of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryLastStateTime

public void setQueryLastStateTime(long x)
                           throws com.lutris.dods.builder.generator.query.DataObjectException,
                                  com.lutris.dods.builder.generator.query.QueryException
Set the LastStateTime to query, with a QueryBuilder comparison operator.

Parameters:
x - The LastStateTime of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByLastStateTime

public void addOrderByLastStateTime(boolean direction_flag)
Add LastStateTime to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByLastStateTime

public void addOrderByLastStateTime()
Add LastStateTime to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryLastStateTimeTZO

public void setQueryLastStateTimeTZO(long x,
                                     java.lang.String cmp_op)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Set the LastStateTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The LastStateTimeTZO of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryLastStateTimeTZO

public void setQueryLastStateTimeTZO(long x)
                              throws com.lutris.dods.builder.generator.query.DataObjectException,
                                     com.lutris.dods.builder.generator.query.QueryException
Set the LastStateTimeTZO to query, with a QueryBuilder comparison operator.

Parameters:
x - The LastStateTimeTZO of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByLastStateTimeTZO

public void addOrderByLastStateTimeTZO(boolean direction_flag)
Add LastStateTimeTZO to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByLastStateTimeTZO

public void addOrderByLastStateTimeTZO()
Add LastStateTimeTZO to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


setQueryProcessDuration

public void setQueryProcessDuration(long x,
                                    java.lang.String cmp_op)
                             throws com.lutris.dods.builder.generator.query.DataObjectException,
                                    com.lutris.dods.builder.generator.query.QueryException
Set the ProcessDuration to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessDuration of the SHKProcessHistoryInfo to query.
cmp_op - QueryBuilder comparison operator to use.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

setQueryProcessDuration

public void setQueryProcessDuration(long x)
                             throws com.lutris.dods.builder.generator.query.DataObjectException,
                                    com.lutris.dods.builder.generator.query.QueryException
Set the ProcessDuration to query, with a QueryBuilder comparison operator.

Parameters:
x - The ProcessDuration of the SHKProcessHistoryInfo to query.
Throws:
com.lutris.dods.builder.generator.query.DataObjectException - If a database access error occurs.
com.lutris.dods.builder.generator.query.QueryException - If comparison operator is inappropriate (e.g. CASE_SENSITIVE_CONTAINS on an integer field).

addOrderByProcessDuration

public void addOrderByProcessDuration(boolean direction_flag)
Add ProcessDuration to the ORDER BY clause. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.

Parameters:
direction_flag - True for ascending order, false for descending

addOrderByProcessDuration

public void addOrderByProcessDuration()
Add ProcessDuration to the ORDER BY clause. This convenience method assumes ascending order. NOTE: The DO cache does not yet support the Order By operation. Using the addOrderBy method forces the query to hit the database.


_helperReconstrQuery

public static void _helperReconstrQuery(ProcessHistoryInfoQuery q,
                                        int col,
                                        java.lang.String value,
                                        java.lang.String op)
WARNING! This method is used only for internal DODS purposes. Don't use it in any other case!


getQueryBuilder

public com.lutris.dods.builder.generator.query.QueryBuilder getQueryBuilder()
Returns the QueryBuilder that this ProcessHistoryInfoQuery uses to construct and execute database queries. ProcessHistoryInfoQuery.setQueryXXX methods use the QueryBuilder to append SQL expressions to the "WHERE" clause to be executed. The QueryBuilder.addEndClause method. can be used to append freeform SQL expressions to the WHERE clause, e.g. "ORDER BY name". Notes regarding cache-enabled DO classes: DO classes can be cache-enabled. If when using a ProcessHistoryInfoQuery, the application developer does not call getQueryBuilder, then ProcessHistoryInfoQuery.setQueryXXX methods simply prune the DO cache and return the remaining results. However, a QueryBuilder builds SELECT statements for execution by the actual database, and never searches the built-in cache for the DO. So, if the DO class is cache-enabled, and getQueryBuilder is called, this ProcessHistoryInfoQuery object ignores the cache and hits the actual database.

Returns:
QueryBuilder that is used to construct and execute database queries.

or

public void or()
Insert an OR between WHERE clauses. Example: find all the persons named Bob or Robert: PersonQuery pq = new PersonQuery(); pq.setQueryFirstName( "Bob" ); pq.or(); pq.setQueryFirstName( "Robert" ); Note: Calls to setQueryXxx methods are implicitly ANDed together, so the following example will always return nothing: PersonQuery pq = new PersonQuery(); pq.setQueryFirstName( "Bob" ); // AND automatically inserted here. pq.setQueryFirstName( "Robert" ); NOTE: The DO cache does not yet support the OR operator. Using the or() method forces the query to hit the database.

See Also:
QueryBuilder to construct more elaborate queries. author Jay Gunter

openParen

public void openParen()
Place an open parenthesis in the WHERE clause. Example usage: find all the Bobs and Roberts who are 5 or 50 years old: PersonQuery pq = new PersonQuery(); pq.openParen(); pq.setQueryFirstName( "Bob" ); pq.or(); pq.setQueryFirstName( "Robert" ); pq.closeParen(); // AND automatically inserted here. pq.openParen(); pq.setQueryAge( 5 ); pq.or(); pq.setQueryAge( 50 ); pq.closeParen(); NOTE: The DO cache does not yet support the Open Paren operator. Using the openParen() method forces the query to hit the database.

See Also:
QueryBuilder to construct more elaborate queries. author Jay Gunter

closeParen

public void closeParen()
Place a closing parenthesis in the WHERE clause. NOTE: The DO cache does not yet support the Close Paren operator. Using the closeParen() method forces the query to hit the database.

See Also:
openParen author Jay Gunter

saveCache

public static void saveCache(java.lang.String root)

loadCache

public static void loadCache(java.lang.String root)