|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
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. |
java.sql.Connection |
SQLContext.getConnection()
Gets theCconnection that should be used for queries which use thix QuerContext. |
java.sql.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.loadParameterRequestAndSessionValues()
When this method is invoked, values are taken from request parameters, request attributes, and session attributes. |
void |
SQLContext.parameterAltered()
Callback method so that parameters can inform their context when they are alerted |
protected java.lang.String |
SQLContext.prepareForExecution()
This method is invoked just before the context's code is executed. |
void |
SQLContext.returnConnection()
Frees the connection, but only if this SQLContext orginally retrieved the connection. |
SQLContext |
SQLContext.setConnection(java.sql.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. |
RowCollection |
RowCollection.getSelectedRowCollection()
Get the selected Rows of this RowCollection |
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(java.lang.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,
java.lang.Class rowSubClass)
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(RowCollection pRowCollection,
java.lang.Class rowSubClass,
boolean initialRow)
Create and return a new Row and also set its Table. |
static Row |
Row.create(java.util.List tables,
java.lang.Class rowSubClass,
java.util.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(SQLContext context,
java.util.List fieldNames,
boolean initializeRow)
Create and return a new Row from the given SQLContext. |
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,
java.lang.Class rowSubClass)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.lang.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,
java.lang.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,
java.lang.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,
java.lang.Class rowSubClass,
java.util.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,
java.lang.Class rowSubClass,
java.util.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,
java.util.List fieldNames,
boolean initialize)
Create and return a new Row for the given table and field names. |
static Row |
Row.create(Table table,
java.util.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,
java.util.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(java.lang.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,
java.security.Principal pUser)
Validate if the operation can be performed on this Row. |
static java.lang.Class |
OracleDBSystem.getFieldClassForSQLTypeName(java.lang.String typeName)
Gets the Field subclass that is representative of this SQL type name. |
java.util.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 java.lang.StringBuffer |
Field.appendSQLColumnDefinition(FieldDescriptorRow pFieldDescriptor,
DBSystem targetSystem,
java.lang.StringBuffer sb)
This method should append all of the necessary information to create this field within a CREATE TABLE SQL statement. |
java.util.Date |
Field.getDate(java.lang.String[] fields)
Returns a Date that represents the Date of the 3 values passed in as a String[]. |
static java.lang.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(java.lang.String systemURL)
Deprecated. removed (11/29/2002 1:48:58 PM) - driver is no required to create the DBSystem |
static DBSystem |
DBSystem.createSystem(java.lang.String url,
java.lang.String alias)
Creates and returns a new DBSystem using the given system url and alias |
static DBSystem |
DBSystem.createSystem(java.lang.String url,
java.lang.String alias,
java.lang.Class dbSystem)
Creates and returns a new DBSystem using the given system url and alias |
static DBSystem |
DBSystem.createSystem(java.lang.String url,
java.lang.String alias,
java.lang.String driver)
Creates and returns a new DBSystem using the given system url and alias |
java.util.Map |
DBSystem.getAllLibraries()
Returns a Map of all the Libraries (keyed by name) in this system. |
static java.lang.Class |
DBSystem.getFieldClassForSQLTypeName(java.lang.String pTypeName)
Gets the Field subclass that is representative of this SQL type name. |
static java.sql.ResultSet |
DataEngine.executeQuery(SQLContext context)
Returns a Result set from executing a query based on the information in the SQLContext. |
static java.util.Map |
DataEngine.getAllLibraries(java.lang.String pSystemAlias)
Deprecated. |
static java.util.Map |
DataEngine.getAllLibraries(DBSystem pSystem)
Returns a Map of all the Libraries for the specified system alias. |
static java.util.Map |
DataEngine.getAllTables(Library pLibrary)
Returns a Map of all the Tables for the Library. |
static int |
DatabaseManager.connectionId(java.lang.String systemURL,
java.sql.Connection conn)
Deprecated. |
static void |
DatabaseManager.createDataSource(java.lang.String JNDIName)
Creates a datasource based on a given JNDI name. |
static void |
DatabaseManager.createDataSource(java.lang.String JNDIName,
java.lang.Class systemClass)
Creates a datasource based on a given JNDI name. |
static void |
DatabaseManager.createDataSource(java.lang.String JNDIName,
java.lang.Class systemClass,
java.lang.String userID,
java.lang.String password)
Creates a datasource based on a given JNDI name. |
static java.sql.Connection |
DatabaseManager.getConnection(java.lang.String pAlias)
Returns a connection associated with the given alias |
static void |
DatabaseManager.shutDownConnectionPool(java.lang.String systemURL)
Deprecated. Use closeConnectionPool(String) instead |
Uses of DataEngineException in planetj.database.connection |
Methods in planetj.database.connection that throw DataEngineException | |
java.sql.Connection |
DataSourceWrapper.getConnection(java.lang.String sql)
Gets a Connection which will be used to execute the specified SQL. |
java.sql.Connection |
DataEngineDataSource.getConnection(java.lang.String sql)
Gets a Connection which will be used to execute the specified SQL. |
java.sql.Connection |
DataEngineConnectionPool.getConnection(java.lang.String sql)
Gets a Connection which will be used to execute the specified SQL. |
java.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(java.lang.String alias,
java.sql.Connection trueConnection)
Creates a new DataEngineConnection. |
|
AS400DataEngineConnection(java.lang.String alias,
java.sql.Connection trueConnection)
|
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. |
protected static java.lang.Object |
FieldIncrementor.incrementValue(java.lang.Object pValue)
Returns the result of incrementing the value that is passed in. |
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(java.lang.String pFDSystemAlias)
Returns the System ((ex. |
static Table |
FieldDescriptorManager.getFieldDataUserTable(java.lang.String pFDSystemAlias)
Returns the User Field data file Table object (FIELDDATA). |
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(java.lang.String pColumnFunctionToken,
java.util.List pFieldNames,
java.lang.String pBreakColumnName,
boolean pAddOverall)
Deprecated. Use the version which takes in a ReportBreakPropertyGroup instead |
ReportBreak |
ReportBreakCollection.addNewReportBreak(ReportPropertyGroup prpg,
java.lang.String pColumnFunctionToken,
java.lang.String pBreakColumnName)
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. |
protected void |
ReportBreak.initialize(ReportBreakCollection prbc,
java.lang.String pColumnFunctionToken,
java.util.List pFieldNames,
java.lang.String pBreakColumnName)
Initializes a ReportBreak. |
protected boolean |
ReportBreak.isAddReportBreakBefore(Row row)
Tests if a report break row should be add to the RowCollection prior to the specified row You can use the getBreakColumn() method (which returns the name of the break column) and the getLastValue() method (which returns the value of the break column field in the previous row) to determine if a report break row should be added. This method is not invoked unless there is at least one row already in the RowCollection |
protected void |
ReportBreak.setFieldNames(java.util.List pFieldNames)
Sets the column names for this ReportBreak |
protected void |
OverallReportBreak.initialize(ReportBreakCollection prbc,
java.lang.String pColumnFunctionToken,
java.util.List pFieldNames)
Initializes a ReportBreak. |
void |
ColumnSum.processValue(java.lang.Object pValue)
Inputs a new value to the column function |
void |
ColumnMin.processValue(java.lang.Object pValue)
Inputs a new value to the column function |
void |
ColumnMax.processValue(java.lang.Object pValue)
Inputs a new value to the column function |
static ColumnFunction |
ColumnFunction.getColumnFunction(java.lang.String pToken,
java.lang.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(java.lang.Object pValue)
Inputs a new value to the column function |
void |
ColumnCount.processValue(java.lang.Object pValue)
Inputs a new value to the column function |
void |
ColumnAverage.processValue(java.lang.Object pValue)
Inputs a new value to the column function |
Constructors in planetj.database.report that throw DataEngineException | |
ReportBreak(ReportBreakCollection prbc,
java.lang.String pColumnFunctionToken,
java.util.List pFieldNames,
java.lang.String pBreakColumnName)
Deprecated. Use the default constructor instead. Relying on this constructor makes subclassing more difficult |
|
OverallReportBreak(ReportBreakCollection prbc,
java.lang.String pColumnFunctionToken,
java.util.List pFieldDescriptors)
Deprecated. Use the default constuctor instead |
Uses of DataEngineException in planetj.dataengine |
Methods in planetj.dataengine that return DataEngineException | |
protected static DataEngineException |
DataEngineServlet.getDataEngineException(java.lang.Throwable t)
|
Methods in planetj.dataengine with parameters of type DataEngineException | |
protected static void |
DataEngineServlet.displayDataEngineException(DataEngineException pDE,
HttpServletRequest pReq,
HttpServletResponse pRes)
|
Methods in planetj.dataengine that throw DataEngineException | |
static Library |
SessionManager.getLibrary(HttpServletRequest pRequest)
Gets the default Library from the session. |
static Library |
SessionManager.getLibrary(HttpServletRequest pRequest,
java.lang.String pLibraryKey)
Gets the Library from the session identified by the given key. |
static java.util.List |
SessionManager.getLibraryList(HttpServletRequest pRequest)
Gets the default list of libraries from the session. |
static java.util.List |
SessionManager.getLibraryList(HttpServletRequest pRequest,
java.lang.String pLibraryListKey)
Gets a list of libraries from the session identified by the given key. |
static java.lang.Object |
SessionManager.getSessionAttribute(HttpServletRequest request,
java.lang.String key)
Deprecated. Replaced with getAttribute(String, HttpServletRequest) to keep up parameter ordering standards with internal code. |
static java.lang.Object |
SessionManager.getSessionAttribute(HttpServletRequest pRequest,
java.lang.String pKey,
java.lang.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(HttpServletRequest pRequest)
Gets the default DBSystem from the session. |
static DBSystem |
SessionManager.getSystem(HttpServletRequest pRequest,
java.lang.String pSystemKey)
Gets the DBSystem from the session identified by the given key. |
static Table |
SessionManager.getTable(HttpServletRequest pRequest)
Gets the default Table from the session. |
static Table |
SessionManager.getTable(HttpServletRequest pRequest,
java.lang.String pTableKey)
Gets the Table from the session identified by the given key. |
static java.util.List |
SessionManager.getTableList(HttpServletRequest pRequest)
Gets the default list of tables from the session. |
static java.util.List |
SessionManager.getTableList(HttpServletRequest pRequest,
java.lang.String pTableListKey)
Gets a list of tables from the session identified by the given key. |
static UserProperties |
SessionManager.getUserProperties(HttpServletRequest request)
Deprecated. replaced with method in DataEngineManager |
static UserProperties |
SessionManager.getUserProperties(HttpServletRequest pRequest,
java.lang.String pUserPropertiesKey)
Deprecated. no longer used |
static UserProperties |
SessionManager.getUserProperties(HttpServletRequest request,
boolean create)
Deprecated. replaced with method in DataEngineManager |
static java.lang.Object |
SessionManager.removeSessionAttribute(HttpServletRequest pRequest,
java.lang.String pKey)
Deprecated. Replaced by removeAttribute(String, HttpServletRequest) to keep consistant parameter ordering standards for internal code. |
static java.lang.Object |
SessionManager.removeSharedSessionAttribute(HttpServletRequest pRequest,
java.lang.String pKey)
Deprecated. Replaced with removeSharedAttribute(String, HttpServletRequest) to keep parameter ordering standards for internal code consistent |
static void |
SessionManager.setSessionAttribute(HttpServletRequest pRequest,
java.lang.String pKey,
java.lang.Object pValue)
Deprecated. Replaced with setAttribute(String, Object, HttpServletRequest) to keep up parameter ordering standards with internal code. |
static void |
SessionManager.setSharedSessionAttribute(HttpServletRequest pRequest,
java.lang.String pKey,
java.lang.Object pValue)
Deprecated. Replaced with setSharedAttribute(String, Object, HttpServletRequest) |
static void |
SessionManager.setUserProperties(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. |
protected void |
PropertyRow.transferPropertiesTo(PropertyRow pDestinationRow)
Transfers the property group info from this row into another PropertyRow. |
void |
IContext.parameterAltered()
Callback method so that parameters can inform their context when they are alerted |
void |
DataEngineServlet.forward(java.lang.String uri,
HttpServletRequest request,
HttpServletResponse response)
Forward to the specified URI. |
static void |
DataEngineServlet.forwardToPage(java.lang.String uri,
HttpServletRequest request,
HttpServletResponse response)
Forward to the specified URI. |
protected void |
DataEngineServlet.forwardInternal(java.lang.String uri,
HttpServletRequest request,
HttpServletResponse response)
Forward to the specified URI. |
void |
DataEngineServlet.removeSharedSessionAttribute(HttpServletRequest pRequest,
java.lang.String pKey)
Deprecated. replaced with removeSessionSharedAttribute(String, HttpServletRequest) |
void |
DataEngineAdminServlet.displayAdminPage(HttpServletRequest req,
HttpServletResponse res)
|
java.lang.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.loadGlobalValues()
Loads Global variables. |
void |
AbstractContext.loadSQLTextReplacementValues()
Loads Global SQL Text Replacement variables. |
void |
AbstractContext.loadParameterRequestAndSessionValues()
When this method is invoked, values are taken from request parameters, request attributes, and session attributes. |
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.parameterAltered()
Callback method so that parameters can inform their context when they are alerted |
protected java.lang.String |
AbstractContext.prepareForExecution()
This method is invoked just before the context's code is executed. |
Uses of DataEngineException in planetj.dataengine.action |
Methods in planetj.dataengine.action that throw DataEngineException | |
java.util.List |
RowActionRequest.getSelectedRows(HttpServletRequest request)
Get the Rows an action is to be carried out on. |
Uses of DataEngineException in planetj.dataengine.application |
Methods in planetj.dataengine.application that throw DataEngineException | |
void |
DataEngineApplicationBuilderServlet.forward(java.lang.String uri,
HttpServletRequest request,
HttpServletResponse response)
Forward to the specified URI. |
static RowCollection |
DataEngineApplicationBuilderServlet.getApplicationsRC(HttpServletRequest req)
Gets the user's Applications |
Uses of DataEngineException in planetj.dataengine.application.magic |
Methods in planetj.dataengine.application.magic that throw DataEngineException | |
java.lang.String |
SaveSQLToSQLOperationRequest.getSQLOperationLabel(HttpServletRequest request)
|
void |
SaveSQLToSQLOperationRequest.storeSQLInUserProperties(HttpServletRequest request)
|
Uses of DataEngineException in planetj.dataengine.autorun |
Methods in planetj.dataengine.autorun that throw DataEngineException | |
void |
EmailOperation.validateRowOperation(int pOperation,
java.security.Principal pUser)
|
Uses of DataEngineException in planetj.dataengine.cache |
Methods in planetj.dataengine.cache that throw DataEngineException | |
java.sql.Connection |
PreparedStatementManager.getConnection(java.lang.String sql)
Gets a Connection. |
protected java.sql.Connection |
PreparedStatementManager.getFirstAvailableConnection(java.util.List connections)
Spins through the List of Connections, returning the first one that is available (or null if none are). |
protected RowCollection |
DataEngineCache.get(SQLContext key)
Gets a RowCollection out of the cache, based on the SQLContext. |
protected void |
DataEngineCache.put(SQLContext key,
RowCollection results)
Puts a RowCollection in the cache, keyed by the SQLContext. |
protected RowCollection |
DataEngineCache.remove(SQLContext key)
Removes a RowCollection from the cache, based on the SQLContext. |
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 | |
java.lang.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,
HttpServletRequest request,
HttpServletResponse response)
|
int |
HttpSecurityManager.getOwnerId(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.fdmanager.magic |
Methods in planetj.fdmanager.magic that throw DataEngineException | |
int |
ViewFDsRequest.getNumberOfRecordsPerPage(HttpServletRequest pRequest)
|
Uses of DataEngineException in planetj.html |
Methods in planetj.html that throw DataEngineException | |
static java.lang.StringBuffer |
HTMLTable.appendEditFDQuickLink(Table table,
java.lang.String fieldName,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Appends a link to navigate to the FDManager to edit a FD for a given column/field. |
java.lang.StringBuffer |
HTMLTable.appendMagicLinks(HttpServletRequest pRequest,
HttpServletResponse pResponse,
java.lang.StringBuffer html,
RowCollection pRC)
|
java.lang.StringBuffer |
HTMLTable.appendMagicRow(HttpServletRequest pRequest,
HttpServletResponse pResponse,
java.lang.StringBuffer html,
RowCollection pRC)
|
java.lang.StringBuffer |
HTMLTable.appendMagicRow(HttpServletRequest request,
HttpServletResponse response,
java.lang.StringBuffer html,
RowCollection rc,
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) |
protected java.lang.StringBuffer |
HTMLRowDetails.appendOperation(Field pField,
Operation pOp,
int columnSpan,
java.lang.StringBuffer html,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
Appends a Operation's entire text to the StringBuffer containing the generated HTML code. |
static java.lang.StringBuffer |
HTMLGenerator.appendHiddenInputs(java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. - replaced with appendRequiredHiddenInputs(StringBuffer, HttpServletRequest, HttpServletResponse) |
static java.lang.StringBuffer |
HTMLGenerator.appendRequiredHiddenInputs(java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Append hidden inputs that WOW requires to the given string buffer. |
static java.lang.StringBuffer |
HTMLGenerator.appendHiddenNavigationIds(java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLGenerator.generateHiddenInputs(java.lang.StringBuffer html,
HttpServletRequest request)
Deprecated. replaced with HTMLGenerator.appendHiddenInputs(StringBuffer, HttpServletRequest, HttpServletResponse) |
static java.lang.String |
HTMLGenerator.generateHiddenInputs(java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Appends hidden html input fields used for the unique session identifier for objects, magic requests, and servlet actions. |
static java.lang.StringBuffer |
HTMLField.appendOperation(Field pField,
Operation pOp,
java.lang.StringBuffer html,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
Appends a Operation's entire text to the StringBuffer containing the generated HTML code. |
static Row |
HTMLExtractor.getSelectedRow(java.lang.String rcSessionId,
HttpServletRequest request)
Retrieves the selected Row from the HttpServletRequest. |
static java.util.List |
HTMLExtractor.getSelectedRows(java.lang.String rcSessionId,
byte returnType,
HttpServletRequest request)
Retrieves the selected Rows from the HttpServletRequest. |
static java.util.List |
HTMLExtractor.getSelectedRows(RowCollection rc,
byte returnType,
HttpServletRequest request)
Retrieves the selected Rows from the HttpServletRequest. |
static java.util.List |
HTMLExtractor.getSelectedRows(java.lang.String rcSessionId,
HttpServletRequest req)
Retrieves the selected Rows from the HttpServletRequest. |
static java.util.List |
HTMLExtractor.getSelectedRows(RowCollection rc,
HttpServletRequest req)
Get the selected Rows from the request. |
static java.lang.StringBuffer |
AbstractParameterInputGenerator.appendEditFDQuickLink(Field field,
int spacesBeforeLink,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Convenience method to include an edit FD quick link for the given field. |
static java.lang.StringBuffer |
AbstractOperationGenerator.appendEditOpQuickLink(Operation op,
int spacesBeforeLink,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Convenience method to include an edit Op quick link for the given operation. |
Uses of DataEngineException in planetj.magic |
Methods in planetj.magic that throw DataEngineException | |
boolean |
ViewRowRequest.isRetrieveAllFieldsOnView(HttpServletRequest pRequest)
Deprecated. method is no longer used for determining what fields are to be shown on edit, insert, or any details for that matter. DisplayColumns property group, the RowCollection and the Row are now used. |
Table |
TableRequest.getTable(HttpServletRequest pRequest)
|
DBSystem |
SystemRequest.getSystem(HttpServletRequest pRequest)
|
DBSystem |
SignOnSQLServerRequest.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
abstract DBSystem |
SignOnRequest.getSystem(HttpServletRequest pRequest,
HttpServletResponse pResponse)
|
DBSystem |
SignOnOracleRemoteRequest.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
DBSystem |
SignOnMySQLRequest.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
DBSystem |
SignOnMSAccessRequest.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
DBSystem |
SignOnDB2RemoteRequest.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
DBSystem |
SignOnDB2LocalRequest.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
abstract DBSystem |
SignOnBaseRequest.createSystem(HttpServletRequest pRequest,
HttpServletResponse pResponse)
|
DBSystem |
SignOnBaseRequest.getSystem(HttpServletRequest pRequest,
HttpServletResponse pResponse)
|
DBSystem |
SignOnAS400Request.createSystem(HttpServletRequest request,
HttpServletResponse response)
|
Row |
RowRequest.getRow(HttpServletRequest request)
|
RowCollection |
RowRequest.getRowCollection(HttpServletRequest request)
|
RowCollection |
RowReflectionRequest.getRowCollection(HttpServletRequest request)
Deprecated. |
Row |
PrintRowRequest.getRow(HttpServletRequest request)
|
boolean |
NextOrPreviousRowRequest.isRetrieveAllFieldsOnEdit(HttpServletRequest pRequest)
Deprecated. method is no longer used for determining what fields are to be shown on edit, insert, or any details for that matter. DisplayColumns property group, the RowCollection and the Row are now used. |
Library |
LibraryRequest.getLibrary(HttpServletRequest pRequest)
|
boolean |
EditRowRequest.isRetrieveAllFieldsOnEdit(HttpServletRequest pRequest)
Deprecated. method is no longer used for determining what fields are to be shown on edit, insert, or any details for that matter. DisplayColumns property group, the RowCollection and the Row are now used. |
boolean |
DeleteRowCollectionRequest.isAllowMultipleDeletes(HttpServletRequest pRequest)
|
Library |
CopyRCToTableRequest.getLibrary(HttpServletRequest pRequest)
|
RowCollection |
CopyRCToTableRequest.getRowCollection(HttpServletRequest pRequest)
|
java.lang.String |
CopyRCToTableRequest.getSQLString(HttpServletRequest pRequest)
|
DBSystem |
CopyRCToTableRequest.getSystem(HttpServletRequest pRequest)
|
Table |
CopyRCToTableRequest.getTable(HttpServletRequest pRequest)
|
static AbstractSQLParameterRequest |
AbstractSQLParameterRequest.create(java.lang.String id,
SQLContext context,
HttpServletRequest request,
HttpServletResponse response)
Convience method to allow creating distinct SQL parameter request objects for different SQL statements. |
Uses of DataEngineException in planetj.processes.logon |
Methods in planetj.processes.logon that throw DataEngineException | |
protected void |
SignOnAndRegistrationServlet.clearNavigationStack(HttpServletRequest request)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |