Uses of Class
planetj.dataengine.exception.DataEngineException

Packages that use DataEngineException
planetj.chart   
planetj.database   
planetj.database.connection   
planetj.database.field   
planetj.database.fielddescriptors   
planetj.database.possiblevalues   
planetj.database.report   
planetj.dataengine   
planetj.dataengine.application   
planetj.dataengine.application.magic   
planetj.dataengine.cache   
planetj.dataengine.exception   
planetj.dataengine.parameter   
planetj.dataengine.security   
planetj.dataengine.security.http   
planetj.dataengine.sqloperation   
planetj.dataengine.webservices   
planetj.fdmanager.magic   
planetj.html   
planetj.magic   
 

Uses of DataEngineException in planetj.chart
 

Subclasses of DataEngineException in planetj.chart
 class ChartException
          Thrown when charting fails.
 

Uses of DataEngineException in planetj.database
 

Methods in planetj.database that throw DataEngineException
 void SQLContext.clear()
          Wipes out the info in this SQLContext, restoring the default values.
 Connection SQLContext.getConnection()
          Gets theCconnection that should be used for queries which use thix QuerContext.
 Connection SQLContext.getConnection(boolean pCreate)
          Gets the connection that should be used for DataEngine operations which use this SQLContext
 SQLContext SQLContext.getKeyContext()
          Gets the SQLContext to be used as a key in the cache.
 void SQLContext.parameterAltered()
          Callback method so that parameters can inform their context when they are alerted
 void SQLContext.returnConnection()
          Frees the connection, but only if this SQLContext orginally retrieved the connection.
 SQLContext SQLContext.setConnection(Connection newConnection)
          Sets the connection for this SQLContext.
 SQLContext SQLContext.setReportBreakCollection(PropertyGroupList pProperties)
          Sets the ReportBreakCollection defining the reports that will be generated in the RowCollection resulting from queries which use this SQLContext
static RowCollection RowCollection.createRowCollection(SQLContext context)
          Creates a new RowCollection object based on the information in a SQLContext.
 FilteredRowCollection RowCollection.filter(IFilter filter)
          Returns a FilteredRowCollection that contains only rows which match the filter criteria.
 FilteredRowCollection RowCollection.filter(IFilter filter, boolean connected)
          Returns a RowCollection of the that contains only rows which match the filter criteria.
 Row RowCollection.newRow()
          Creates, adds, and returns a new Row from this RowCollection.
 Row RowCollection.newRow(int index)
          Creates, adds, and returns a new Row from this RowCollection.
static Row Row.create(Class rowSubClass)
          Create and return a new Row of the given Class type using the given ExecutingContext to allow for security and/or personalization.
static Row Row.create(RowCollection pRowCollection)
          Create and return a new Row and also set its Table.
static Row Row.create(RowCollection pRowCollection, boolean initialRow)
          Create and return a new Row and also set its Table.
static Row Row.create(Table table)
          Create and return a new Row of class Row.class and initializes the row with all of the tables fields.
static Row Row.create(Table table, boolean initializeRow)
          Create and return a new Row of class Row.class and initializes the row with all of the tables fields if specified.
static Row Row.create(Table table, boolean initializeRow, ExecutingContext ec)
          Create and return a new Row and also set its Table.
static Row Row.create(Table table, Class rowSubClass)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, boolean initializeRow)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, boolean initializeRow, ExecutingContext pExecutingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, ExecutingContext executingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, List fieldNames, boolean initializeRow)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, List fieldNames, boolean initializeRow, ExecutingContext pExecutingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, List fieldNames, boolean initialize)
          Create and return a new Row for the given table and field names.
static Row Row.create(Table table, List fieldNames, boolean initializeRow, ExecutingContext pExecutingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, List names, ExecutingContext ec)
          Create and return a new Row and also set its Table.
 void Row.add(Field pField)
          Adds the given Field to this Row's FieldCollection.
 boolean Row.is(String pFieldName)
          Gets the specified field and returns the boolean value.
 Row Row.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 void Row.validateRowOperation(int pOperation, Principal pUser)
          Validate if the operation can be performed on this Row.
static Class OracleDBSystem.getFieldClassForSQLTypeName(String typeName)
          Gets the Field subclass that is representative of this SQL type name.
 Map Library.getAllTables()
          Returns a Map of all the Tables in this Library.
 void FieldCollection.add(Field pField)
          Adds the given field to this FieldCollection.
 void FieldCollection.replace(Field pField)
          Replaces the Field with the name of the given Field.
static StringBuffer Field.appendSQLColumnDefinition(FieldDescriptorRow pFieldDescriptor, DBSystem targetSystem, StringBuffer sb)
          This method should append all of the necessary information to create this field within a CREATE TABLE SQL statement.
 Date Field.getDate(String[] fields)
          Returns a Date that represents the Date of the 3 values passed in as a String[].
static String Field.getSQLColumnDefinition(FieldDescriptorRow pFieldDescriptor, DBSystem targetSystem)
          This method should return all of the necessary information to create this field within a CREATE TABLE SQL statement.
 void Field.setRow(Row pRow)
          Sets the Row this Field belongs to.
static DBSystem DBSystem.createSystem(String systemURL)
          Deprecated. removed (11/29/2002 1:48:58 PM) - driver is no required to create the DBSystem
static DBSystem DBSystem.createSystem(String url, String alias)
          Creates and returns a new DBSystem using the given system url and alias
static DBSystem DBSystem.createSystem(String url, String alias, Class dbSystem)
          Creates and returns a new DBSystem using the given system url and alias
static DBSystem DBSystem.createSystem(String url, String alias, String driver)
          Creates and returns a new DBSystem using the given system url and alias
 Map DBSystem.getAllLibraries()
          Returns a Map of all the Libraries (keyed by name) in this system.
static Class DBSystem.getFieldClassForSQLTypeName(String pTypeName)
          Gets the Field subclass that is representative of this SQL type name.
static ResultSet DataEngine.executeQuery(SQLContext context)
          Returns a Result set from executing a query based on the information in the SQLContext.
static Map DataEngine.getAllLibraries(String pSystemAlias)
          Deprecated.  
static Map DataEngine.getAllLibraries(DBSystem pSystem)
          Returns a Map of all the Libraries for the specified system alias.
static Map DataEngine.getAllTables(Library pLibrary)
          Returns a Map of all the Tables for the Library.
static int DatabaseManager.connectionId(String systemURL, Connection conn)
          Deprecated.  
static void DatabaseManager.createDataSource(String JNDIName)
          Creates a datasource based on a given JNDI name.
static void DatabaseManager.createDataSource(String JNDIName, Class systemClass)
          Creates a datasource based on a given JNDI name.
static void DatabaseManager.createDataSource(String JNDIName, Class systemClass, String userID, String password)
          Creates a datasource based on a given JNDI name.
static Connection DatabaseManager.getConnection(String pAlias)
          Returns a connection associated with the given alias
static void DatabaseManager.shutDownConnectionPool(String systemURL)
          Deprecated. Use closeConnectionPool(String) instead
 

Uses of DataEngineException in planetj.database.connection
 

Methods in planetj.database.connection that throw DataEngineException
 Connection DataSourceWrapper.getConnection(String sql)
          Gets a Connection which will be used to execute the specified SQL.
 Connection DataEngineDataSource.getConnection(String sql)
          Gets a Connection which will be used to execute the specified SQL.
 Connection DataEngineConnectionPool.getConnection(String sql)
          Gets a Connection which will be used to execute the specified SQL.
 Connection DataEngineConnectionPool.getConnection(DataEngineConnection connection)
          Attempts to get the specified connection from the connection pool
 

Constructors in planetj.database.connection that throw DataEngineException
DataEngineConnection(String alias, Connection trueConnection)
          Creates a new DataEngineConnection.
 

Uses of DataEngineException in planetj.database.field
 

Methods in planetj.database.field that throw DataEngineException
 void LogicalField.setRow(Row pRow)
          Sets the Row this Field belongs to.
 

Uses of DataEngineException in planetj.database.fielddescriptors
 

Methods in planetj.database.fielddescriptors that throw DataEngineException
 Row FieldDescriptorRow.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
static Table FieldDescriptorManager.getFieldDataTable(String pFDSystemAlias)
          Returns the Field data file Table object.
 

Uses of DataEngineException in planetj.database.possiblevalues
 

Methods in planetj.database.possiblevalues that throw DataEngineException
 void PossibleValueTable.createFieldDescriptors()
          Creates and stores a FieldDescriptorCollection of FieldDescriptors for this table.
 FieldDescriptorRow PossibleValueTable.newFD()
           
 

Uses of DataEngineException in planetj.database.report
 

Methods in planetj.database.report that throw DataEngineException
 void ReportPropertyGroup.addReportBreaks(ReportBreakCollection pRBC)
          Populates a ReportBreakCollection with ReportBreak objects, based on the Properties contained in this ReportPropertyGroup.
 ReportBreak ReportBreakCollection.addNewReportBreak(String pColumnFunctionToken, List pFieldNames, String pBreakColumnName, boolean pAddOverall)
          Creates a new ReportBreak and adds it to this ReportBreakCollection.
static ReportBreakCollection ReportBreakCollection.createReportBreakCollection(PropertyGroupList pProperties)
          Creates a new ReportBreakCollection from a PropertyGroupList containing properties which specify a ReportBreakCollection.
 void ColumnSum.processValue(Object pValue)
          Inputs a new value to the column function
 void ColumnMin.processValue(Object pValue)
          Inputs a new value to the column function
 void ColumnMax.processValue(Object pValue)
          Inputs a new value to the column function
static ColumnFunction ColumnFunction.getColumnFunction(String pToken, String pFieldName)
          Gets a ColumnFunction object for the specified token and field name.
 void ColumnFunction.processRow(Row pRow)
          Inputs a new row to the column function
abstract  void ColumnFunction.processValue(Object pValue)
          Inputs a new value to the column function
 void ColumnCount.processValue(Object pValue)
          Inputs a new value to the column function
 void ColumnAverage.processValue(Object pValue)
          Inputs a new value to the column function
 

Constructors in planetj.database.report that throw DataEngineException
ReportBreak(ReportBreakCollection prbc, String pColumnFunctionToken, List pFieldNames, String pBreakColumnName)
          ReportBreak constructor
OverallReportBreak(ReportBreakCollection prbc, String pColumnFunctionToken, List pFieldDescriptors)
          OverallReportBreak constructor comment.
 

Uses of DataEngineException in planetj.dataengine
 

Methods in planetj.dataengine that throw DataEngineException
static Library SessionManager.getLibrary(javax.servlet.http.HttpServletRequest pRequest)
          Gets the default Library from the session.
static Library SessionManager.getLibrary(javax.servlet.http.HttpServletRequest pRequest, String pLibraryKey)
          Gets the Library from the session identified by the given key.
static List SessionManager.getLibraryList(javax.servlet.http.HttpServletRequest pRequest)
          Gets the default list of libraries from the session.
static List SessionManager.getLibraryList(javax.servlet.http.HttpServletRequest pRequest, String pLibraryListKey)
          Gets a list of libraries from the session identified by the given key.
static Object SessionManager.getSessionAttribute(javax.servlet.http.HttpServletRequest request, String key)
          Deprecated. Replaced with getAttribute(String, HttpServletRequest) to keep up parameter ordering standards with internal code.
static Object SessionManager.getSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey, String uniqueSessionId)
          Deprecated. Replaced with getAttribute(String, String, HttpServletRequest) as of (10/8/2002 10:00:12 PM) to keep parameter ordering standards of internal code consistent
static DBSystem SessionManager.getSystem(javax.servlet.http.HttpServletRequest pRequest)
          Gets the default DBSystem from the session.
static DBSystem SessionManager.getSystem(javax.servlet.http.HttpServletRequest pRequest, String pSystemKey)
          Gets the DBSystem from the session identified by the given key.
static Table SessionManager.getTable(javax.servlet.http.HttpServletRequest pRequest)
          Gets the default Table from the session.
static Table SessionManager.getTable(javax.servlet.http.HttpServletRequest pRequest, String pTableKey)
          Gets the Table from the session identified by the given key.
static List SessionManager.getTableList(javax.servlet.http.HttpServletRequest pRequest)
          Gets the default list of tables from the session.
static List SessionManager.getTableList(javax.servlet.http.HttpServletRequest pRequest, String pTableListKey)
          Gets a list of tables from the session identified by the given key.
static UserProperties SessionManager.getUserProperties(javax.servlet.http.HttpServletRequest request)
          Deprecated. replaced with method in DataEngineManager
static UserProperties SessionManager.getUserProperties(javax.servlet.http.HttpServletRequest pRequest, String pUserPropertiesKey)
          Deprecated. no longer used
static UserProperties SessionManager.getUserProperties(javax.servlet.http.HttpServletRequest request, boolean create)
          Deprecated. replaced with method in DataEngineManager
static Object SessionManager.removeSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey)
          Deprecated. Replaced by removeAttribute(String, HttpServletRequest) to keep consistant parameter ordering standards for internal code.
static Object SessionManager.removeSharedSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey)
          Deprecated. Replaced with removeSharedAttribute(String, HttpServletRequest) to keep parameter ordering standards for internal code consistent
static void SessionManager.setSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey, Object pValue)
          Deprecated. Replaced with setAttribute(String, Object, HttpServletRequest) to keep up parameter ordering standards with internal code.
static void SessionManager.setSharedSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey, Object pValue)
          Deprecated. Replaced with setSharedAttribute(String, Object, HttpServletRequest)
static void SessionManager.setUserProperties(javax.servlet.http.HttpServletRequest pRequest, UserProperties props)
          Deprecated. replaced with method in DataEngineManager
 Row PropertyRow.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 void IContext.parameterAltered()
          Callback method so that parameters can inform their context when they are alerted
 void DataEngineServlet.forward(String uri, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Forward to the specified URI.
 void DataEngineServlet.removeSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey)
          Deprecated. replaced with removeSessionAttribute(String, HttpServletRequest)
 void DataEngineServlet.removeSharedSessionAttribute(javax.servlet.http.HttpServletRequest pRequest, String pKey)
          Deprecated. replaced with removeSessionSharedAttribute(String, HttpServletRequest)
 void DataEngineAdminServlet.displayAdminPage(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
           
 String DataEngineAdminServlet.getInitialPage(javax.servlet.http.HttpServletRequest req)
          Force subclasses to return an initial jsp/servlet.
 void AbstractContext.clear()
          Wipes out info in this context, restoring the default values.
 void AbstractContext.loadUserAndExecutingContextValues()
          When this method is invoked, values are taken from the user object and executing context and set on the appropriate Parameters.
 void AbstractContext.loadUserValues()
          Deprecated. Use loadUserAndExecutingContextValues instead
 void AbstractContext.parameterAltered()
          Callback method so that parameters can inform their context when they are alerted
 

Uses of DataEngineException in planetj.dataengine.application
 

Methods in planetj.dataengine.application that throw DataEngineException
 void DataEngineApplicationBuilderServlet.forward(String uri, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Forward to the specified URI.
 

Uses of DataEngineException in planetj.dataengine.application.magic
 

Methods in planetj.dataengine.application.magic that throw DataEngineException
 String SaveSQLToSQLOperationRequest.getSQLOperationLabel(javax.servlet.http.HttpServletRequest request)
           
 void SaveSQLToSQLOperationRequest.storeSQLInUserProperties(javax.servlet.http.HttpServletRequest request)
           
 

Uses of DataEngineException in planetj.dataengine.cache
 

Methods in planetj.dataengine.cache that throw DataEngineException
 Connection PreparedStatementManager.getConnection(String sql)
          Gets a Connection.
 RowCollection CacheManager.get(SQLContext key)
          Gets a RowCollection out of the cache, based on the SQLContext.
 DataEngineCache CacheManager.getCache(SQLContext context)
          Gets the appropriate cache for the SQLContext.
 void CacheManager.put(SQLContext key, RowCollection results)
          Puts a RowCollection in the cache, keyed by the SQLContext.
 RowCollection CacheManager.remove(SQLContext key)
          Removes a RowCollection from the cache, based on the SQLContext.
 void CacheCleanupTask.performTask()
          The action to be performed by this task.
 

Uses of DataEngineException in planetj.dataengine.exception
 

Subclasses of DataEngineException in planetj.dataengine.exception
 class DEMessageException
           
 class DEMultipleDeleteException
           
 class DESQLException
          This exception class is used to wrapper SQLExceptions.
 class DETransactionException
          This class is used to encapsulate multiple exceptions that occur while doing mulitple transactions.
 

Uses of DataEngineException in planetj.dataengine.parameter
 

Methods in planetj.dataengine.parameter that throw DataEngineException
 String IParameter.getCodeReplacementString()
          Gets the String which represents this parameter's value in a String of code.
 

Uses of DataEngineException in planetj.dataengine.security
 

Subclasses of DataEngineException in planetj.dataengine.security
 class UnauthorizedException
          This exception is to allow for a distinct DataEngineException to allow for separation of itself from other DataEngineExceptions.
 

Uses of DataEngineException in planetj.dataengine.security.http
 

Methods in planetj.dataengine.security.http that throw DataEngineException
 void ISignOn.prepareForSignOn(ISecured secured, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 int HttpSecurityManager.getOwnerId(javax.servlet.http.HttpServletRequest req)
          Gets the owner id from the current sign on receipt.
 

Uses of DataEngineException in planetj.dataengine.sqloperation
 

Methods in planetj.dataengine.sqloperation that throw DataEngineException
 ReportBreakCollection SQLOperation.getReportBreakCollection()
          Gets the ReportBreakCollection associated with this SQLOperation (may be null)
 

Uses of DataEngineException in planetj.dataengine.webservices
 

Methods in planetj.dataengine.webservices that throw DataEngineException
 void DataEngineWebServiceServlet.returnObjectToRequestor(Serializable obj, javax.servlet.http.HttpServletResponse pRes)
           
 void DataEngineWebServiceServlet.processDistributedContext(DistributedContext context, DirectOperationRequest pSQLOperationData, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes)
          Assuming right now that the context contains an operation.
 void DataEngineWebServiceServlet.processDistributedObject(DirectOperationRequest pSQLOperationData, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes)
           
 void DataEngineWebServiceServlet.processSQLOperation(DirectOperationRequest pOperationData, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes)
           
 void DataEngineWebServiceServlet.processURLRequest(DirectOperationRequest pOperationData, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes)
           
 

Uses of DataEngineException in planetj.fdmanager.magic
 

Methods in planetj.fdmanager.magic that throw DataEngineException
 int ViewFDsRequest.getNumberOfRecordsPerPage(javax.servlet.http.HttpServletRequest pRequest)
           
 

Uses of DataEngineException in planetj.html
 

Methods in planetj.html that throw DataEngineException
 StringBuffer HTMLTable.appendMagicLinks(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, StringBuffer html, RowCollection pRC)
           
 StringBuffer HTMLTable.appendMagicRow(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, StringBuffer html, RowCollection pRC)
           
 StringBuffer HTMLTable.appendMagicRow(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, StringBuffer html, RowCollection pRC, boolean generatequicklinks)
           
 boolean HTMLTable.isDisplayMagicLinks()
          Deprecated. because no one is calling it and isDisplayEditFDs() might return true even if no FD's are being displayed (because they are only displayed when an app is launched from the builder)
static StringBuffer HTMLGenerator.appendHiddenInputs(StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
static StringBuffer HTMLGenerator.appendHiddenNavigationIds(StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
static StringBuffer HTMLGenerator.generateHiddenInputs(StringBuffer html, javax.servlet.http.HttpServletRequest request)
          Deprecated. replaced with HTMLGenerator.appendHiddenInputs(StringBuffer, HttpServletRequest, HttpServletResponse)
static String HTMLGenerator.generateHiddenInputs(StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Appends hidden html input fields used for the unique session identifier for objects, magic requests, and servlet actions.
static Row HTMLExtractor.getSelectedRow(String rcSessionId, javax.servlet.http.HttpServletRequest request)
          Retrieves the selected Row from the HttpServletRequest.
static List HTMLExtractor.getSelectedRows(String rcSessionId, byte returnType, javax.servlet.http.HttpServletRequest request)
          Retrieves the selected Rows from the HttpServletRequest.
static List HTMLExtractor.getSelectedRows(String rcSessionId, javax.servlet.http.HttpServletRequest req)
          Retrieves the selected Rows from the HttpServletRequest.
 

Uses of DataEngineException in planetj.magic
 

Methods in planetj.magic that throw DataEngineException
 boolean ViewRowRequest.isRetrieveAllFieldsOnView(javax.servlet.http.HttpServletRequest pRequest)
           
 Table TableRequest.getTable(javax.servlet.http.HttpServletRequest pRequest)
           
 DBSystem SystemRequest.getSystem(javax.servlet.http.HttpServletRequest pRequest)
           
 DBSystem SignOnSQLServerRequest.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
abstract  DBSystem SignOnRequest.getSystem(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse)
           
 DBSystem SignOnOracleRemoteRequest.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 DBSystem SignOnMySQLRequest.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 DBSystem SignOnMSAccessRequest.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 DBSystem SignOnDB2RemoteRequest.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 DBSystem SignOnDB2LocalRequest.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
abstract  DBSystem SignOnBaseRequest.createSystem(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse)
           
 DBSystem SignOnBaseRequest.getSystem(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse)
           
 DBSystem SignOnAS400Request.createSystem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 Row RowRequest.getRow(javax.servlet.http.HttpServletRequest request)
           
 RowCollection RowRequest.getRowCollection(javax.servlet.http.HttpServletRequest request)
           
 RowCollection RowReflectionRequest.getRowCollection(javax.servlet.http.HttpServletRequest request)
           
 Row PrintRowRequest.getRow(javax.servlet.http.HttpServletRequest request)
           
 boolean NextOrPreviousRowRequest.isRetrieveAllFieldsOnEdit(javax.servlet.http.HttpServletRequest pRequest)
           
 Library LibraryRequest.getLibrary(javax.servlet.http.HttpServletRequest pRequest)
           
 boolean EditRowRequest.isRetrieveAllFieldsOnEdit(javax.servlet.http.HttpServletRequest pRequest)
           
 boolean DeleteRowCollectionRequest.isAllowMultipleDeletes(javax.servlet.http.HttpServletRequest pRequest)
           
 boolean CopyRowRequest.isRetrieveAllFieldsOnCopy(javax.servlet.http.HttpServletRequest pRequest)
           
 Library CopyRCToTableRequest.getLibrary(javax.servlet.http.HttpServletRequest pRequest)
           
 RowCollection CopyRCToTableRequest.getRowCollection(javax.servlet.http.HttpServletRequest pRequest)
           
 String CopyRCToTableRequest.getSQLString(javax.servlet.http.HttpServletRequest pRequest)
           
 DBSystem CopyRCToTableRequest.getSystem(javax.servlet.http.HttpServletRequest pRequest)
           
 Table CopyRCToTableRequest.getTable(javax.servlet.http.HttpServletRequest pRequest)
           
static AbstractSQLParameterRequest AbstractSQLParameterRequest.create(String id, SQLContext context, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Convience method to allow creating distinct SQL parameter request objects for different SQL statements.