com.tibco.rta.query
Interface BaseQueryDef

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
QueryByFilterDef, QueryByKeyDef, QueryDef

public interface BaseQueryDef
extends java.io.Serializable

An interface that allows to build a query.


Method Summary
 int getBatchSize()
          Get the batch size for query optimization.
 java.util.Calendar getCreatedDate()
          Get the date/time of creation.
 java.util.Calendar getModifiedDate()
          Get the date/time of modification.
 java.lang.String getName()
          Get the query name.
 QueryType getQueryType()
          Get the type of query.
 java.lang.String getSchemaName()
          Get the schema name.
 SortOrder getSortOrder()
          Gets the sort order.
 java.lang.String getUserName()
          Get the user name.
 java.lang.String getVersion()
          Get the version.
 void setBatchSize(int size)
          The batch size to set for optimizations.
 void setCreatedDate(java.util.Calendar createdDateTime)
          Set the creation date/time.
 void setModifiedDate(java.util.Calendar modifiedDateTime)
          Set the modification date/time.
 void setName(java.lang.String name)
          The query name to set.
 void setQueryType(QueryType queryType)
          The type of query
 void setSortOrder(SortOrder sortOrder)
          Sets the sort order.
 void setUserName(java.lang.String userName)
          Set the user name associated with this query.
 void setVersion(java.lang.String version)
          Set the version associated with this query.
 

Method Detail

getName

java.lang.String getName()
Get the query name.

Returns:

getSchemaName

java.lang.String getSchemaName()
Get the schema name.

Returns:

getUserName

java.lang.String getUserName()
Get the user name.

Returns:

getBatchSize

int getBatchSize()
Get the batch size for query optimization.

Returns:
the batch size.

getQueryType

QueryType getQueryType()
Get the type of query.

Returns:
the type of query.

getVersion

java.lang.String getVersion()
Get the version.

Returns:
the version.

getCreatedDate

java.util.Calendar getCreatedDate()
Get the date/time of creation.

Returns:
the date/time of creation.

getModifiedDate

java.util.Calendar getModifiedDate()
Get the date/time of modification.

Returns:
the date/time of modification.

getSortOrder

SortOrder getSortOrder()
Gets the sort order.

Returns:
the sort order.

setName

void setName(java.lang.String name)
The query name to set.

Parameters:
name - query name to set.

setBatchSize

void setBatchSize(int size)
The batch size to set for optimizations.

Parameters:
size - the batch size to set for optimizations.

setQueryType

void setQueryType(QueryType queryType)
The type of query

Parameters:
queryType - the type of query.

setUserName

void setUserName(java.lang.String userName)
Set the user name associated with this query.

Parameters:
userName - the user name associated with this query.

setVersion

void setVersion(java.lang.String version)
Set the version associated with this query.

Parameters:
version - version associated with this query.

setCreatedDate

void setCreatedDate(java.util.Calendar createdDateTime)
Set the creation date/time.

Parameters:
createdDateTime - the creation date/time.

setModifiedDate

void setModifiedDate(java.util.Calendar modifiedDateTime)
Set the modification date/time.

Parameters:
modifiedDateTime - the modification date/time.

setSortOrder

void setSortOrder(SortOrder sortOrder)
Sets the sort order.

Parameters:
sortOrder - the sort order to set.


Copyright © 2000-2014 TIBCO Inc. All Rights Reserved.