|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ErrorInfo | |
---|---|
org.apache.empire.commons | This package contains various common classes for error handling, specific data types and data type conversion. |
org.apache.empire.data.bean | This package contains implmentations of Empire's data and metadata interfaces for JavaBeans of Data Tranfer Objects (DTO's). |
org.apache.empire.db | This package contains the core Empire-DB implementation classes. |
org.apache.empire.db.derby | This package contains classes necessary to support the Apache Derby database system. |
org.apache.empire.db.expr.column | This package contains SQL-generator classes for column expressions. |
org.apache.empire.db.expr.compare | This package contains SQL-generator classes for compare expressions used in the where and having clause. |
org.apache.empire.db.expr.join | This package contains SQL-generator classes for join expressions used in the from clause. |
org.apache.empire.db.expr.set | This package contains SQL-generator classes for set expressions used in the set clause. |
org.apache.empire.db.h2 | This package contains classes necessary to support the H2 database system. |
org.apache.empire.db.hsql | This package contains classes necessary to support the HSQLDB database system. |
org.apache.empire.db.mysql | This package contains classes necessary to support the MySQL database system. |
org.apache.empire.db.oracle | This package contains classes necessary to support the Oracle database system. |
org.apache.empire.db.postgresql | This package contains classes necessary to support the PostgreSQL database system. |
org.apache.empire.db.sqlserver | This package contains classes necessary to support the Microsoft SQL-Server database system. |
org.apache.empire.samples.db | |
org.apache.empire.samples.db.advanced | |
org.apache.empire.struts2.action | |
org.apache.empire.struts2.actionsupport | |
org.apache.empire.struts2.jsp.controls | |
org.apache.empire.struts2.websample.db | |
org.apache.empire.struts2.websample.db.records | |
org.apache.empire.xml | This package contains classes for XML generation and configuration. |
Uses of ErrorInfo in org.apache.empire.commons |
---|
Classes in org.apache.empire.commons that implement ErrorInfo | |
---|---|
class |
ErrorObject
This class holds and provides information about the last error that occured on an object. |
Methods in org.apache.empire.commons with parameters of type ErrorInfo | |
---|---|
protected boolean |
ErrorObject.error(ErrorInfo other)
Copies the error set on another object to this object. |
static java.lang.String |
Errors.getErrorMessage(ErrorInfo info)
Gets an error Message from an object implementing the error info interface. |
static java.lang.String |
ErrorObject.getMessage(ErrorInfo error)
Returns the message associated with an error. |
protected boolean |
ErrorObject.internalSetError(ErrorType errType,
java.lang.Object[] params,
ErrorInfo source)
Sets the last error and the corresponding error message on this object. |
Constructors in org.apache.empire.commons with parameters of type ErrorInfo | |
---|---|
ErrorObject(ErrorInfo other)
Constructs a ErrorObject object copying the Error information of another object. |
Uses of ErrorInfo in org.apache.empire.data.bean |
---|
Classes in org.apache.empire.data.bean that implement ErrorInfo | |
---|---|
class |
BeanRecordProxy<T>
BeanRecordProxy This class defines proxy that allows any POJO to behave like a record object. |
Uses of ErrorInfo in org.apache.empire.db |
---|
Classes in org.apache.empire.db that implement ErrorInfo | |
---|---|
class |
DBColumn
This is the base class for all database columns that have a physical representation. |
class |
DBColumnExpr
This class is the base class for all expressions that represent a single value. |
class |
DBCombinedCmd
This class is used for building up a partition of a SQL-Command. |
class |
DBCommand
This abstract class handles the creation of the SQL-Commands. |
static class |
DBCommand.DBCmdParameter
|
class |
DBCommandExpr
This abstract class handles the creation of the SQL-Commands. |
protected static class |
DBCommandExpr.DBCmdColumn
This class wrapps a column of sql command in a special command column object. |
protected static class |
DBCommandExpr.DBCmdQuery
|
protected static class |
DBCommandExpr.DBOrderByInfo
|
class |
DBDatabase
This abstract class is the applicaton's interface for a particular database schema. |
class |
DBDatabaseDriver
|
static class |
DBDatabaseDriver.DBSeqTable
This class is used to emulate sequences by using a sequence table. |
class |
DBExpr
This abstract class is the base class for all database expression classes (e.g. |
class |
DBIndex
This class handles the primary key for the tables. |
class |
DBObject
Base class for all database related objects. |
class |
DBQuery
This class can be used to wrap a query from a DBCommand and use it like a DBRowSet. You may use this class for two purposes: In oder to define subqueries simply define a command object with the subquery and wrap it inside a DBQuery. |
static class |
DBQuery.DBQueryColumn
|
class |
DBReader
This class is used to perform database queries from a DBCommand object and access the results. In oder to perform a query call the open() function or - for single row queries - call getRecordData(); You can iterate through the rows using moveNext() or an iterator. |
class |
DBRecord
This class handles one record from a database table. |
class |
DBRecordData
This interface defines for the classes DDRecordSet and DBRecord. |
class |
DBRelation
This class creates a DBReferene object for a foreing key relation. |
class |
DBRowSet
This class is the base class for all the DBTable, CBView and DBQuery classes this class contains all the columns of the tables, views or querys |
class |
DBSQLScript
DBSQLScript This class is a collection of sql command strings. The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript) ) |
class |
DBTable
This class represent one table of the database. |
class |
DBTableColumn
This class represent one column of a table. |
class |
DBView
This class represent a view of the database. |
static class |
DBView.DBViewColumn
|
Uses of ErrorInfo in org.apache.empire.db.derby |
---|
Classes in org.apache.empire.db.derby that implement ErrorInfo | |
---|---|
class |
DBDatabaseDriverDerby
This class provides support for the Derby database system. |
static class |
DBDatabaseDriverDerby.DBCommandDerby
Defines the Derby command type. |
Uses of ErrorInfo in org.apache.empire.db.expr.column |
---|
Classes in org.apache.empire.db.expr.column that implement ErrorInfo | |
---|---|
class |
DBAbstractFuncExpr
This implements some basic functionality for SQL functions based on a column expression |
class |
DBAliasExpr
This class allows column renaming in SQL. |
class |
DBCalcExpr
This class is used for performing calculations in SQL It handles the mathematical operations ("+", "-", "*", "/") for the current column. |
class |
DBCaseExpr
This class is used to add the "case when ?=A then X else Y end" statement to the SQL-Command. |
class |
DBConcatExpr
This class is used for performing string concatenation in SQL |
class |
DBConvertExpr
This class is used to convert a value to a different data type. |
class |
DBCountExpr
This class is used to add the "count" statement to the SQL-Command. |
class |
DBDecodeExpr
This class is used to decode a set of keys to the corresponding target values. |
class |
DBFuncExpr
This class is used for performing various SQL functions on a column or column expression. |
class |
DBValueExpr
This class is used for declaring constant values in SQL. |
Uses of ErrorInfo in org.apache.empire.db.expr.compare |
---|
Classes in org.apache.empire.db.expr.compare that implement ErrorInfo | |
---|---|
class |
DBCompareAndOrExpr
This class is used for combining two filter constraints by and / or operator |
class |
DBCompareColExpr
This class is used for defining filter constraints based on a column expression in SQL |
class |
DBCompareExpr
This class is a common base class for all SQL filter constraints classes |
class |
DBCompareNotExpr
This class is used for defining filter constraints based on a column expression in SQL |
class |
DBExistsExpr
This class is used for building up the SQL-Command for the EXISTS syntax. |
Uses of ErrorInfo in org.apache.empire.db.expr.join |
---|
Classes in org.apache.empire.db.expr.join that implement ErrorInfo | |
---|---|
class |
DBJoinExpr
This class is used for building a join expression of an SQL statement. |
class |
DBJoinExprEx
This class is used for building a join expression of an SQL statement. |
Uses of ErrorInfo in org.apache.empire.db.expr.set |
---|
Classes in org.apache.empire.db.expr.set that implement ErrorInfo | |
---|---|
class |
DBSetExpr
This class is used for building a set expression of a SQL update statement. |
Uses of ErrorInfo in org.apache.empire.db.h2 |
---|
Classes in org.apache.empire.db.h2 that implement ErrorInfo | |
---|---|
class |
DBDatabaseDriverH2
This class provides support for the H2 database system. |
static class |
DBDatabaseDriverH2.DBCommandH2
Defines the H2 command type. |
Uses of ErrorInfo in org.apache.empire.db.hsql |
---|
Classes in org.apache.empire.db.hsql that implement ErrorInfo | |
---|---|
class |
DBDatabaseDriverHSql
This class provides support for the HSQLDB database system. |
static class |
DBDatabaseDriverHSql.DBCommandHSql
Defines the HSQLDB command type. |
Uses of ErrorInfo in org.apache.empire.db.mysql |
---|
Classes in org.apache.empire.db.mysql that implement ErrorInfo | |
---|---|
class |
DBDatabaseDriverMySQL
This class provides support for the MySQL database system. |
static class |
DBDatabaseDriverMySQL.DBCommandMySQL
Defines the MySQL command type. |
Uses of ErrorInfo in org.apache.empire.db.oracle |
---|
Classes in org.apache.empire.db.oracle that implement ErrorInfo | |
---|---|
class |
DBCommandOracle
This class handles the special features of an oracle database. |
class |
DBDatabaseDriverOracle
This class provides support for the Oracle database system. Oracle Version 9 or higher is required. |
class |
OracleSYSDatabase
Represents the data model of the system tables. |
static class |
OracleSYSDatabase.DBColComments
|
static class |
OracleSYSDatabase.DBColInfo
|
static class |
OracleSYSDatabase.DBConstraints
|
static class |
OracleSYSDatabase.DBTabComments
|
static class |
OracleSYSDatabase.DBUserConCol
|
Uses of ErrorInfo in org.apache.empire.db.postgresql |
---|
Classes in org.apache.empire.db.postgresql that implement ErrorInfo | |
---|---|
class |
DBDatabaseDriverPostgreSQL
This class provides support for the PostgreSQL database system. |
static class |
DBDatabaseDriverPostgreSQL.DBCommandPostreSQL
Defines the PostgreSQL command type. |
Uses of ErrorInfo in org.apache.empire.db.sqlserver |
---|
Classes in org.apache.empire.db.sqlserver that implement ErrorInfo | |
---|---|
class |
DBDatabaseDriverMSSQL
This class provides support for the Microsoft SQL-Server database system. |
static class |
DBDatabaseDriverMSSQL.DBCommandMSSQL
Defines the Microsoft SQL-Server command type. |
Uses of ErrorInfo in org.apache.empire.samples.db |
---|
Classes in org.apache.empire.samples.db that implement ErrorInfo | |
---|---|
class |
SampleConfig
The SampleConfig class provides access to configuration settings. |
class |
SampleDB
This file contains the definition of the data model in Java. |
static class |
SampleDB.Departments
This class represents the definition of the Departments table. |
static class |
SampleDB.Employees
This class represents the definition of the Employees table. |
Uses of ErrorInfo in org.apache.empire.samples.db.advanced |
---|
Classes in org.apache.empire.samples.db.advanced that implement ErrorInfo | |
---|---|
class |
SampleAdvConfig
The SampleConfig class provides access to configuration settings. |
class |
SampleAdvDB
This file contains the definition of the data model in Java. |
static class |
SampleAdvDB.Departments
This class represents the definition of the Departments table. |
static class |
SampleAdvDB.EmployeeDepartmentHistory
This class represents the definition of the Departments table. |
static class |
SampleAdvDB.EmployeeDepSinceView
This class represents the definition of the EmployeeDepSinceView table. |
static class |
SampleAdvDB.EmployeeInfoView
This class represents the definition of the EmployeeInfoView table. |
static class |
SampleAdvDB.Employees
This class represents the definition of the Employees table. |
Uses of ErrorInfo in org.apache.empire.struts2.action |
---|
Methods in org.apache.empire.struts2.action that return ErrorInfo | |
---|---|
ErrorInfo |
WebAction.getLastActionError(boolean clear)
|
ErrorInfo |
ActionErrorProvider.getLastActionError(boolean clear)
returns the last Action Error of the current or a previous aciton the error is left on the session unless the clear flag is set to true In order to display the error to the user an application should use this function instead of getActionError() and set clear to true. |
Methods in org.apache.empire.struts2.action that return types with arguments of type ErrorInfo | |
---|---|
java.util.Map<java.lang.String,ErrorInfo> |
WebAction.getItemErrors()
|
java.util.Map<java.lang.String,ErrorInfo> |
ActionErrorProvider.getItemErrors()
returns a map of field errors field errors are not persisted on the session and will be lost on redirects. |
Methods in org.apache.empire.struts2.action with parameters of type ErrorInfo | |
---|---|
protected void |
WebAction.addFieldError(java.lang.String name,
Column column,
ErrorInfo error)
|
protected void |
WebAction.addItemError(java.lang.String item,
ErrorType errorType,
java.lang.String title,
ErrorInfo error)
|
java.lang.String |
WebAction.getLocalizedErrorMessage(ErrorInfo error)
|
java.lang.String |
ActionErrorProvider.getLocalizedErrorMessage(ErrorInfo error)
return the localized message for an error |
protected void |
WebAction.setActionError(ErrorInfo error)
|
Uses of ErrorInfo in org.apache.empire.struts2.actionsupport |
---|
Classes in org.apache.empire.struts2.actionsupport that implement ErrorInfo | |
---|---|
class |
ActionError
|
class |
BeanActionSupport<T>
BeanActionSupport |
class |
BeanListActionSupport<T>
BeanListActionSupport |
class |
FormActionSupport
|
class |
ListActionSupport
ListActionSupport |
class |
ReaderListActionSupport
ReaderListActionSupport |
class |
RecordActionSupport
RecordActionSupport |
class |
RecordFormActionSupport
|
Methods in org.apache.empire.struts2.actionsupport with parameters of type ErrorInfo | |
---|---|
protected abstract void |
ActionBase.addFieldError(java.lang.String name,
Column column,
ErrorInfo error)
|
protected void |
FormActionSupport.addFieldError(java.lang.String name,
Column column,
ErrorInfo error,
java.lang.Object value)
overridable: sets a field error message on the action |
Constructors in org.apache.empire.struts2.actionsupport with parameters of type ErrorInfo | |
---|---|
ActionError(ErrorInfo other)
|
Uses of ErrorInfo in org.apache.empire.struts2.jsp.controls |
---|
Classes in org.apache.empire.struts2.jsp.controls that implement ErrorInfo | |
---|---|
static class |
InputControl.FieldValueError
This class wraps a parsing or validation error. |
Uses of ErrorInfo in org.apache.empire.struts2.websample.db |
---|
Classes in org.apache.empire.struts2.websample.db that implement ErrorInfo | |
---|---|
class |
SampleRecord
|
class |
SampleTable
Base class definition for all database tables Automatically generates a message-key for the field title e.g. |
Uses of ErrorInfo in org.apache.empire.struts2.websample.db.records |
---|
Classes in org.apache.empire.struts2.websample.db.records that implement ErrorInfo | |
---|---|
class |
DepartmentRecord
|
class |
EmployeeRecord
|
Uses of ErrorInfo in org.apache.empire.xml |
---|
Classes in org.apache.empire.xml that implement ErrorInfo | |
---|---|
class |
XMLConfiguration
This class manages the configuration of a Java Bean by an xml configuration file. |
class |
XMLWriter
This class prints out a XML-DOM-Tree to an output stream. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |