|
Business Components | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.jbo.common.NamedObjectImpl | +--oracle.jbo.server.ComponentObjectImpl | +--oracle.jbo.server.ContainerObjectImpl | +--oracle.jbo.server.ApplicationModuleImpl
The base class of Application Modules.
An Application Module is a logical container for coordinated objects related
to a particular task, with optional programming logic. Application Modules
provide a simple runtime data connection model (one connection per
Application Module) and a context for defining and executing transactions.
The framework provides an ApplicationPool
interface that clients can use to manage and share a pool of Application
Modules. An Application Module provides the following functionality:
getTransaction
, to obtain references to
application View Objects getViewObjects
, and to invoke
custom application methods. For more information about custom
application methods please see Extending the Application
Module Implementation which describes extending the default
Application Module implementation.
create()
on
the Application Module's home, ApplicationModuleHome
.
Nested Application Modules may be instantiated by the Business Components for Java framework when its
parent application module is instantiated (static nesting) or when an
application invokes createApplicationModule
on an existing Application Module instance (dynamic nesting). Please see
Nesting Application Modules for more information
about nested Application Modules.
Customers can use the Application Module wizard to declare custom Application Module implemenations to the BC4J framework.
DBTransactionImpl
.
The root Application Module provides the transaction context for its
contained Application Modules. A nested Application Module design is useful
for applications that define several functional sub-applications that share
the same transaction context and transaction caches. With a nested
Application Module design, it is easy to re-deploy nested Application
Modules as standalone Application Modules in different client applications
without having to modify the metadata for the other existing Application
Modules.
ApplicationPool
Field Summary |
Type | Field |
---|---|
static java.lang.String |
DEFAULT_DEF_NAME
Default Def name for this Application Module. |
Fields inherited from class oracle.jbo.server.ContainerObjectImpl |
mComponentList, mComponents |
Fields inherited from class oracle.jbo.common.NamedObjectImpl |
mFullName, mObjName, mParent, mProperties |
Fields inherited from interface oracle.jbo.ApplicationModule |
DEFAULT_DEF_FULL_NAME, DEFAULT_ROOT_APP_MOD_NAME, PASSIVATE_TO_DATABASE,
PASSIVATE_TO_FILE, PASSIVATE_TO_MEMORY, SYNC_IMMEDIATE,
SYNC_LAZY |
Fields inherited from interface oracle.jbo.common.TransPostControl |
TRANS_POST_GET_ATTR_BY_INDEX, TRANS_POST_GET_ATTR_BY_NAME, TRANS_POST_GET_ATTR_COUNT,
TRANS_POST_GET_ATTR_INDEX_OF, TRANS_POST_PUSHBACK, TRANS_POST_REMOVE,
TRANS_POST_REVERT, TRANS_POST_SET_ATTR_BY_INDEX, TRANS_POST_SET_ATTR_BY_NAME |
Constructor Summary |
Type | Constructor |
---|---|
protected |
ApplicationModuleImpl()
constructs a new Application Module. |
Method Summary |
Type | Method |
---|---|
protected void |
activate(Session session)
Called by the framework when a root Application Module is created. |
protected void |
activateState(Element parent)
Allows subclasses to retrieve custom data from an XML-node under the given parent element. |
byte[] |
activateState(int id,
boolean remove)
Internal: Applications should not use this method. |
protected void |
addChild(ComponentObjectImpl object)
Internal: Applications should not use this method. |
void |
addWarning(JboWarning warn)
Specifies the name of the handler that will perform special processing of warnings on the client. |
protected void |
afterConnect()
Invoked after the application module database connection has been established. |
protected void |
beforeDisconnect()
Invoked before the application module database connection has been released. |
void |
clearVOCaches(java.lang.String entityName,
boolean recurse)
Clears the caches of all View Objects that use the specified entity. |
ApplicationModule |
createApplicationModule(java.lang.String amName,
java.lang.String defName)
Creates an instance of an Application Module within this Application Module; that is, a nested Application Module. |
ComponentObject |
createComponentObject(java.lang.String coName,
java.lang.String comDefName)
Creates a Component object in the context of this Application Module. |
static ApplicationModuleImpl |
createRootApplicationModule(java.lang.String applicationModuleDefName,
Session sess)
Internal: Applications should not call this method. |
static void |
createSharedDataHandle()
Internal: Applications should not call this method. |
ViewLink |
createViewLink(java.lang.String viewLinkName,
java.lang.String viewLinkDefName,
ViewObject master,
ViewObject detail)
Creates a View Link, given the View Link name, the Def name, and the names of the master and detail View Objects. |
ViewLink |
createViewLinkBetweenViewObjects(java.lang.String viewLinkName,
java.lang.String accessorName,
ViewObject master,
AttributeDef[] srcAttrs,
ViewObject detail,
AttributeDef[] destAttrs,
java.lang.String assocClause)
Creates a View Link given either a View Link Definition or an Entity Association. |
ViewLink |
createViewLinkFromEntityAssocName(java.lang.String viewLinkName,
java.lang.String entityAssocName,
ViewObject master,
ViewObject detail)
Creates a View Link, given the View Objects and an Entity Association. |
ViewObject |
createViewObject(java.lang.String voName,
java.lang.String vDefName)
Creates an updateable View Object. |
protected ViewObject |
createViewObject(java.lang.String voName,
ViewDefImpl viewDef)
|
ViewObject |
createViewObjectFromQueryClauses(java.lang.String vuName,
java.lang.String eoName,
java.lang.String selectClause,
java.lang.String fromClause,
java.lang.String whereClause,
java.lang.String orderByClause)
Creates an updateable View Object. |
ViewObject |
createViewObjectFromQueryStmt(java.lang.String qName,
java.lang.String query)
Creates a read-only View Object, given a query statement and a name for the View Object. |
static void |
createXMLSharedDataHandle()
Call this function to register a shared data handle with MetaObjectManager and use it later. |
java.lang.String |
dumpQueryResult(java.lang.String query,
java.lang.String dumpClassName,
java.lang.String[] data)
Writes the result of the query to a (potentially very long) string. |
int |
executeCommand(java.lang.String command)
Specifies a valid SQL statement to be executed by the server. |
ApplicationModule |
findApplicationModule(java.lang.String amName)
Returns the named Application Module. |
ComponentObject |
findComponentObject(java.lang.String compName)
Finds the component object from the Application Module. |
RowSetIterator |
findRSIForEntity(RowSetIterator[] rsis,
int eRowHandle)
Finds the RowSetIterator associated with the specified row handle. |
ViewLink |
findViewLink(java.lang.String vlName)
Returns the specified View Link from this Application Module. |
ViewObject |
findViewObject(java.lang.String voName)
Gets the named View Object that was created at runtime in the Application Module or created with Design Time tools. |
ViewObject |
findViewObjectUsingEntity(ViewObject[] vos,
java.lang.String eoName,
java.lang.String[] attrNames)
Given an array of View Objects (the vos parameter), finds the first matching View Object. |
void |
findVOsWithEntityUsage(java.lang.String entityName,
boolean recurse,
com.sun.java.util.collections.ArrayList vos)
Finds the View Objects that use the specified entity. |
void |
findVOsWithEntityUsage(java.lang.String entityName,
boolean recurse,
java.util.Vector vos)
|
protected ApplicationModuleDefImpl |
getApplicationModuleDef()
Returns the Def (definition) associated with this Application Module. |
ApplicationModuleImpl[] |
getApplicationModuleImpls()
Internal: Applications should not use this method. |
java.lang.String[] |
getApplicationModuleNames()
Returns an array of the Application Modules that are contained within this Application Module. |
java.lang.String |
getClientProxyClassName()
Internal: Applications should not use this method. |
java.lang.String |
getClientProxyClassName(java.lang.String serverType)
Internal: Applications should not use this method. |
DBTransaction |
getDBTransaction()
Returns the database transaction associated with the root Application Module. |
java.lang.String |
getDefFullName()
Returns the fully-qualified (that is, package-qualified) name of this Application Module's Def (definition) object. |
java.lang.String |
getDefName()
Returns the name of this Application Module's Def (definition) object. |
Row |
getEntityRowFromHandle(int eRowHandle)
Internal: Applications should not use this method. |
oracle.jbo.common.remote.rAttributeDescription[] |
getQueryInfo(ViewObject vo)
Internal: Applications should not use this method. |
Session |
getSession()
Returns the session information. |
ClientDocument |
getStyles(java.lang.String name)
Gets the Application Module's style definitions from the middle tier. |
java.lang.Object |
getSyncLock()
Gets the locking object for this Application Module. |
int |
getSyncMode()
Returns the sync mode for this Application Module. |
Transaction |
getTransaction()
Returns the transaction information. |
java.lang.String[] |
getViewLinkNames()
Returns an array of the names of the View Links contained in this Application Module. |
ViewLinkImpl[] |
getViewLinks()
Returns an array of the View Links contained in this Application Module. |
java.lang.String[] |
getViewObjectNames()
Returns an array of the names of the View Objects contained in this Application Module. |
ViewObject[] |
getViewObjects()
Constructs an array of this Application Module's View Objects. |
boolean |
isRoot()
Determines if this is the root Application Module. |
static void |
launchTester(java.lang.String packageName,
java.lang.String configName)
|
int |
passivateState(byte[] clientData)
Internal: Applications should not use this method. |
protected void |
passivateState(Document doc,
Element parent)
Allows subclasses to store custom data as XML-nodes under the given parent element, in the given document. |
int |
passivateState(int id,
byte[] clientData)
Internal: Applications should not use this method. |
void |
remove()
Deletes this Application Module. |
protected void |
removeChild(ComponentObjectImpl object)
Internal: Applications should not use this method. |
void |
removeState(int id)
Internal: Applications should not use this method. |
int |
reservePassivationId()
Internal: Applications should not use this method. |
protected void |
reset()
Override this method to reset any cached varaibles for objects that belong to this appModule. |
void |
resetState(boolean reload)
Internal: Applications should not use this method. |
void |
setExceptionHandler(JboExceptionHandler hndlr)
Specifies the name of the handler which will perform special processing of the exceptions on the client. |
void |
setStoreForPassiveState(byte storageType)
Internal: Applications should not use this method. |
void |
setStyles(java.lang.String name,
ClientDocument clientDocument)
Saves the Application Module's style definitions to the middle tier. |
void |
setSyncMode(int mode)
Sets the mode in which the sync'ing of client data with the middle tier is performed. |
void |
sync()
Synchronizes all the result sets defined in this Application Module in the client with the application tier. |
java.lang.Object |
transPostGetAttr(int op,
int hdl,
int index,
java.lang.String name)
Internal: Applications should not use this method. |
void |
transPostPushback(int hdl)
Internal: Applications should not use this method. |
void |
transPostRemove(int hdl)
Internal: Applications should not use this method. |
void |
transPostRevert(int hdl)
Internal: Applications should not use this method. |
void |
transPostRowOp(int op,
int hdl)
Internal: Applications should not use this method. |
void |
transPostSetAttr(int op,
int hdl,
int index,
java.lang.String name,
java.lang.Object value)
Internal: Applications should not use this method. |
Methods inherited from class oracle.jbo.server.ContainerObjectImpl |
addContainerListener, removeContainerListener |
Methods inherited from class oracle.jbo.server.ComponentObjectImpl |
addListener, create, createRef, getApplicationModule, getCompListeners, getCompListenersList,
getProxyClassName, getProxyClassName, getRootApplicationModule,
isRegWithPiggyMan, setName, setParent,
setProxyClassName |
Methods inherited from class oracle.jbo.common.NamedObjectImpl |
getFullName, getName, getParent,
getProperties, getPropertiesAsStrings, getPropertiesMap,
getProperty, refreshProperty, setFullName,
setPropertiesMap, setProperty |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface oracle.jbo.ComponentObject |
getFullName, getName |
Methods inherited from interface oracle.jbo.Properties |
getProperties, getProperty, refreshProperty |
Field Detail |
public static final java.lang.String DEFAULT_DEF_NAME
Constructor Detail |
protected ApplicationModuleImpl()
Method Detail |
public final java.lang.Object getSyncLock()
ApplicationModule
This locking object should be used to synchronize multiple calls into BC4J. The client application code rarely needs to worry about synchronization. It is the middle tier (the server) code that needs to synchronize calls into the middle tier to serialize updates to shared middle tier objects.
Here is an example of how to synchronize access using this method:
synchronized(am.getSyncLock()) { // Code that needs to execute serially. }
getSyncLock
in interface ApplicationModule
oracle.jbo.ApplicationModule
public static ApplicationModuleImpl createRootApplicationModule(java.lang.String applicationModuleDefName, Session sess)
A factory method for creating a root Application Module.
applicationModuleDefName
- the name of an Application Module definition.sess
- the session.public static void createSharedDataHandle()
Call this function to register a shared data handle with the
MetaObjectManager
and use it later.
public static void createXMLSharedDataHandle()
MetaObjectManager
and use it later.protected void activate(Session session) throws java.lang.IllegalStateException
create
method which is called even when
nested Application Modules are created, this method is called only for
the root Application Module.
Subclasses can override this method to perform customizations. For example, it can be overriden to initialize connection pools. Another example is to override activate to automatically create a connection in the middle tier when the root Application Module is created.
If this method is overriden, then subclasses must call the super class first in the custom implementation.
session
- the session in which the root Application Module is
created.protected ApplicationModuleDefImpl getApplicationModuleDef()
This method should not be overridden.
public boolean isRoot()
isRoot
in interface ApplicationModule
true
if this is the root; false otherwise.protected void addChild(ComponentObjectImpl object)
Adds names to this Application Module's own list of child components.
The child components can be View Objects, View Links,
or other Application Modules. This method overrides an internal
addChild method in
NamedObjectImpl
.
object
- an object to add to the component list.oracle.jbo.server.NamedObjectImpl
protected void removeChild(ComponentObjectImpl object)
Removes names from this Application Module's own list of child components.
The child components can be View Objects, View Links,
or other Application Modules. This method overrides an internal
removeChild method in
NamedObjectImpl
.
object
- an object to remove from the component list.oracle.jbo.server.NamedObjectImpl
public java.lang.String getDefName()
getDefName
in interface ComponentObject
getDefName
in class ComponentObjectImpl
public java.lang.String getDefFullName()
getDefFullName
in interface ComponentObject
getDefFullName
in class ComponentObjectImpl
public ApplicationModule createApplicationModule(java.lang.String amName, java.lang.String defName)
oracle.jbo.ApplicationModule nestedAM = yourAm.createApplicationModule("subAppMod", "PackageName.AppModuleName");
You can override this method to also create View Objects within the "scope" of the Application Module, and make it available to other code. In this case, the code in the Application Module can make assumptions about what View Objects are available and contain code for customizing the View Objects. It can control the namespace of objects that are contained within it.
createApplicationModule
in interface ApplicationModule
amName
- the name to be given to the Application Module.
If amName
is empty, a name is generated.defName
- the name of the Application Module definition to be used.
If null
a default definition is used.public ApplicationModule findApplicationModule(java.lang.String amName)
oracle.jbo.ApplicationModule am = findApplicationModule("KpiAM");
findApplicationModule
in interface ApplicationModule
amName
- the name of the Application Module.
If amName
is empty the root Application Module is returned.InvalidObjNameException
- if the name cannot
be found.public java.lang.String[] getApplicationModuleNames()
The following code sample returns an array containing the names of Application Modules defined in the Application Module appMod (that is, nested Application Modules):
// Get the names of Application Modules defined in the Application Module. String[] amNames = appMod.getApplicationModuleNames();
getApplicationModuleNames
in interface ApplicationModule
public void transPostPushback(int hdl)
transPostPushback
in interface TransPostControl
public void transPostRemove(int hdl)
transPostRemove
in interface TransPostControl
public void transPostRevert(int hdl)
transPostRevert
in interface TransPostControl
public void transPostRowOp(int op, int hdl)
public java.lang.Object transPostGetAttr(int op, int hdl, int index, java.lang.String name)
public void transPostSetAttr(int op, int hdl, int index, java.lang.String name, java.lang.Object value)
public Row getEntityRowFromHandle(int eRowHandle)
public void sync()
sync
in interface ApplicationModule
public void setSyncMode(int mode)
SYNC_LAZY is typically more efficient in that it means fewer round trips to the middle tier.
setSyncMode
in interface ApplicationModule
mode
- integer representation of the sync mode:
0=SYNC_LAZY, 1=SYNC_IMMEDIATE.public int getSyncMode()
getSyncMode
in interface ApplicationModule
public java.lang.String[] getViewObjectNames()
The following code sample returns an array containing the names of View Objects defined in the Application Module appMod:
// Get the names of View Objects defined in the Application Module. String[] voNames = appMod.getViewObjectNames();
getViewObjectNames
in interface ApplicationModule
public java.lang.String[] getViewLinkNames()
The following code sample returns an array containing the View Links defined in the Application Module appMod:
// Get the View Links defined in the Application Module. String[] linkNames = appMod.getViewLinkNames();
getViewLinkNames
in interface ApplicationModule
public ViewLinkImpl[] getViewLinks()
The following example uses this method to remove the View Links contained in the Application Module:
ViewLink[] vls = yourAM.getViewLinks(); for (j = 0; j < vls.length; j++) { vls[j].remove(); }
public ViewLink createViewLink(java.lang.String viewLinkName, java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
For example, assume that during design time, you used the Design-Time View Object Wizard to create two View Objects, DeptVO and EmpVO inside of a package named package1. Then, assume that you invoked the View Link Wizard from the package node to create a View Link Definition named MyViewLinkDef, that links DeptVO and EmpVO in a master-detail relationship.
Given that you have the names of the View Link Definition and the master and detail View Objects, you can provide code such as the following that executes during runtime and creates a View Link named MyLink1:
ViewObject voDept = myAM.createViewObject("MyDept", "package1.DeptVO"); ViewObject voEmp = myAM.createViewObject("MyEmp", "package1.EmpVO"); ViewLink vl = myAM.createViewLink("MyLink1", "package1.MyViewLinkDef", voDept, voEmp);
This will set up a master-detail relationship between the voDept and the voEmp.
createViewLink
in interface ApplicationModule
viewLinkName
- the name to be given to the View Link.
If empty, a name is generated.viewLinkDefName
- the name of the definition to be used to create the link.
If empty, a default definition will be used.master
- the link's source View Object.detail
- the link's destination View Object.InvalidParamException
- if master
or detail
are invalid.InvalidObjNameException
- if viewLinkName
is invalid.NameClashException
- if viewLinkName
already exists.public ViewLink createViewLinkFromEntityAssocName(java.lang.String viewLinkName, java.lang.String entityAssocName, ViewObject master, ViewObject detail)
Use this method to create a View Link when your code can access the View Objects and an Entity Association. This method can create a View Link because a View Link Definition can be built from the Entity Association between the underlying Entity Objects.
For example, during Design Time you can define View Objects such as DeptVO for the DeptEO Entity Object, and EmpVO for the EmpEO Entity Object. Then you can define an Association named MyAssoc that associates DeptEO to EmpEO. With this information, you can build a View Link Definition, say MyViewLinkBasedOnAssoc, which relates DeptVO to EmpVO, based on this Entity Association.
During runtime, you can create a View Link with code like this:
ViewObject voDept = myAM.createViewObject("MyDept", "package1.DeptVO"); ViewObject voEmp = myAM.createViewObject("MyEmp", "package1.EmpVO"); ViewLink vl = myAM.createViewLinkFromEntityAssocName("MyLink2", "package1.MyAssoc", voDept, voEmp);
The primary difference between
createViewLink
and
createViewLinkFromEntityAssocName is that the former requires
the View Link Definition name, and the latter requires the Entity
Association name.
createViewLinkFromEntityAssocName
in interface
ApplicationModule
viewLinkName
- the name to be given to the View Link.
If empty a name is generated.entityAssocName
- the entity association that the View Link will represent.master
- the link's source View Object.detail
- the link's destination View Object.InvalidParamException
- if master
,
detail
, or entityAssocName
are invalid.InvalidObjNameException
- if viewLinkName
is invalid.NameClashException
- if viewLinkName
already exists.public ViewLink createViewLinkBetweenViewObjects(java.lang.String viewLinkName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
During design time, you could define View Objects such as DeptVO for the DeptEO Entity Object, and EmpVO for the EmpEO Entity Object, but not define an Entity Association or a View Link Definition.
During runtime, you can use createViewLinkBetweenViewObjects to create a View Link by associating attributes from DeptVO and EmpVO. For example, if both DeptVO and EmpVO have a DeptNum attribute, you can associate the attributes and create the View Link with the following block of code:
ViewObject voDept = myAM.createViewObject("MyDept", "package1.DeptVO"); ViewObject voEmp = myAM.createViewObject("MyEmp", "package1.EmpVO"); // Build an attribute array, consisting of DeptVO.DeptNum. AttributeDef[] deptAttrs = new AttributeDef[1]; deptAttrs[0] = voDept.findAttributeDef("DeptNum"); // Build an attribute array, consisting of EmpVO.DeptNum. AttributeDef[] empAttrs = new Attributedef[1]; empAttrs[0] = voEmp.findAttributeDef("DeptNum"); ViewLink vl = myAM.createViewLinkBetweenViewObjects("MyLink3", "Employees", // accessor name--more on this below voDept, // master deptAttrs, // department attributes voEmp, // detail empAttrs, // employee attributes null); // assoc clause
The createViewLinkBetweenViewObjects call builds a View Link that makes voEmp a detail of voDept. The voEmp View Object will display employees for the current department in voDept.
Using the Accessor Name
The createViewLinkBetweenViewObjects method lets you specify an
accessor name. The accessor lets you retrieve details by calling
getAttribute with that name. In the above code example, the
accessor was specified as Employees. Calling getAttribute
on Employees will return an iterator through which you can
enumerate employees in the current department.
For example, you can write code like this that will return an iterator that can enumerate employees in the first department.
Row row = voDept.first(); // get the first dept RowIterator iter = (RowIterator) row.getAttribute("Employees");
If your code does not need an accessor, the accessorName parameter can be set to null.
Using the Association Clause
The createViewLinkBetweenViewObjects method lets you specify a
custom association clause, replacing the one generated by the
Business Components runtime. Passing in null means that the
method will use the association clause generated by runtime which relates
the source attributes to the destination attributes. For example, since
assocClause is null in the above code snippet, runtime
will use the equivalent of the PL/SQL association clause WHERE
voDept.DeptNum=voEmp.DeptNum.
createViewLinkBetweenViewObjects
in interface ApplicationModule
viewLinkName
- the name to be given to the View Link.
If empty, a name is generated.accessorName
- the name to be given to the View Link's accessor.master
- the link's source View Object.srcAttrs
- link attributes taken from the master View Object.detail
- the link's destination View Object.destAttrs
- link attributes taken from the detail View Object.assocClause
- the association clause. Can be null.InvalidParamException
- if master
or detail
are invalid.InvalidObjNameException
- if viewLinkName
or accessorName
are invalid.NameClashException
- if viewLinkName
or accessorName
already exist.public ViewObject findViewObject(java.lang.String voName)
The following sample code locates and returns a named View Object within an Application Module. This lets the Application Module reuse the View Object. The code sample calls findViewObject and passes in the name of a View Object.
// appMod is an Application Module defined at design time. ViewObject vo = appMod.findViewObject("MyEmpView");
findViewObject
in interface ApplicationModule
voName
- a name.InvalidObjNameException
- if voName
is invalid.NoObjException
- if voName
does not exist.public ComponentObject findComponentObject(java.lang.String compName)
ComponentObject
interface. This method
allows for integration of other applications.findComponentObject
in interface ApplicationModule
findComponentObject
in class ContainerObjectImpl
compName
- name of the component object.public ViewLink findViewLink(java.lang.String vlName)
For example, in the following code sample, this method is used to return the first View Link defined in the Application Module appMod:
// Get the first link defined in the Application Module. String[] linkNames = appMod.getViewLinkNames(); if (linkNames.length < 1) { System.out.println("\n No links."); return; } ViewLink link = appMod.findViewLink(linkNames[0]);
findViewLink
in interface ApplicationModule
vlName
- a name.InvalidObjNameException
- if vlName
is invalid.NoObjException
- if vlName
does not exist.public DBTransaction getDBTransaction()
NotConnectedException
- if the transaction or the root Application Module
does not exist.public ViewObject[] getViewObjects()
ViewObject[] vos = yourAM.getViewObjects(); for (j = 0; j < vos.length; j++) { vos[j].remove(); }
public ViewObject createViewObjectFromQueryStmt(java.lang.String qName, java.lang.String query)
The following example of a simple fetch uses a static SQL statement with all information hard-coded. After printing the results, the View Object is removed.
public static void demoSimpleFetch(ApplicationModule appMod) { // Define basic query string. String sqlStr = "SELECT Emp.ename, Emp.mgr FROM EMP Emp "; ViewObject vo = appMod.createViewObjectFromQueryStmt("QueryDemo", sqlStr); printViewObject(vo); vo.remove();}
createViewObjectFromQueryStmt
in interface ApplicationModule
qName
- the name to be given to the View Object.
If empty a name is generated.query
- the SQL query that defines the View Object.InvalidObjNameException
- if qName
is invalid.NoObjException
- if qName
does not exist.public ViewObject createViewObjectFromQueryClauses(java.lang.String vuName, java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause)
Use this method to build a View Object from SQL clauses. The View Object can be based on an Entity Object. For example, the following statement creates a View Object from attributes of the EMP Entity Object. Attributes related to EMP (such as E.ENAME) are updateable.
ViewObject v = appMod.createViewObjectFromQueryClauses("xyz", "demo.hr.EMP", // The one updateable Entity Object Name "E.ENAME, E.EMPNO", // select clause "EMP E", // from clause "E.DEPTNO = 10", // where clause null); // order by clause
createViewObjectFromQueryClauses
in interface ApplicationModule
vuName
- the name to be given to the View Object.
If empty, a name is generated.eoName
- the name of the Entity Object from which the
View Object is to be derived.selectClause
- a SQL statement SELECT clause.fromClause
- a SQL statement FROM clause.whereClause
- a SQL statement WHERE clause.orderbyClause
- a SQL statement
ORDERBY clause.InvalidParamException
- if vuName
is invalid.NameClashException
- if vuName
already exists.public int executeCommand(java.lang.String command)
The following code example uses executeCommand. The SQL string is designed to update the EMP table. This example passes the string to executeCommand, then prints a message to report how many rows were actually updated.
public static void demoUpdateColumn(ApplicationModule appMod) { String sqlStr = "UPDATE EMP " + "SET MGR=7007 " + "WHERE MGR=7698 "; int n = appMod.getTransaction().executeCommand(sqlStr); System.out.println("Updated " + n + " rows."); }
Be careful when using executeCommand, because it will execute any valid SQL statement. For example, you could perform an operation like the following DDL command:
appMod.getTransaction().executeCommand("DROP TABLE MYTEMPTABLE");
A pending database transaction could be committed inadvertently due to the implicit commit performed by DDL operations, as well as having any row locks released.
command
- a valid SQL statement.public java.lang.String dumpQueryResult(java.lang.String query, java.lang.String dumpClassName, java.lang.String[] data)
The following code example uses dumpQueryResult.
public static void demoSimpleFetch(ApplicationModule appMod) { // Define and execute a simple SQL statement. String sqlStr = "SELECT Emp.ename FROM EMP Emp "; // dumpQueryResult is a utility method for testing queries. String result = appMod.getTransaction().dumpQueryResult(sqlStr, "oracle.jbo.server.QueryDumpTab", null); System.out.println(sqlStr); System.out.println(result); }
the
- SQL query statement.the
- class that dumps the result to a string.data
- an array of data items.protected ViewObject createViewObject(java.lang.String voName, ViewDefImpl viewDef)
public ViewObject createViewObject(java.lang.String voName, java.lang.String vDefName)
This method is useful for instantiating View Objects within a generic Application Module, but you can use it with any Application Module. The code calls createViewObject, passing in the name of the View Object metadata (that is, the name you provided for the View Object at design time) that defines the View Object and a View instance name to identify this instance. You can use this View instance name to find the View Object later, if needed.
// Specify the Java file that defines the View Object. // Format: package.filename String voDefFile = "d2e.DeptView"; // Identify the View Object. Must be a valid Java identifier. String voName = "demoDeptVO"; // Create the View Object within the context defined by the // Application Module. ViewObject vo = appMod.createViewObject(voName, voDefFile);
createViewObject
in interface ApplicationModule
voName
- the name to be given to the View Object.
If empty, a name is generated.vDefName
- a view definition.InvalidObjNameException
- if voName
is invalid.NoObjException
- if voName
does not exist.public ComponentObject createComponentObject(java.lang.String coName, java.lang.String comDefName)
An Application
Module typically contains View Objects, View Links, or other
Application Modules. This method will create a generic
component in the context of the Application Module. A generic
component is any object that implements the
ComponentObject
interface. This method
allows for integration of other applications.
createComponentObject
in interface ApplicationModule
createComponentObject
in class ContainerObjectImpl
coName
- name of the component object. If empty, a name will be generated.comDefName
- name of the component Def (definition) object.InvalidObjNameException
- if an invalid component name is used.public ApplicationModuleImpl[] getApplicationModuleImpls()
Creates an array of Application Modules.
public oracle.jbo.common.remote.rAttributeDescription[] getQueryInfo(ViewObject vo)
Constructs an array of a View Object's attribute descriptors.
vo
- a View Object.public void remove()
This method should not be overridden.
remove
in interface ComponentObject
remove
in class ComponentObjectImpl
protected void reset()
public void resetState(boolean reload)
ApplicationModule
Resets the non-transaction state of an application module. For example:
appModule.resetState(false);
resetState
in interface ApplicationModule
oracle.jbo.ApplicationModule
reload
- forces the application module to reload any child view usages,
application module usages, and view link usages.public void findVOsWithEntityUsage(java.lang.String entityName, boolean recurse, com.sun.java.util.collections.ArrayList vos)
clearVOCaches
.
If entityName is null, then this method finds all View Objects in the Application Module. If recurse is true, it recurses into nested (child) Application Modules.
entityName
- name of the Entity Object that the View Objects use. Can be
null.recurse
- true recurses to (child) Application Modules;
false applies this method only to the top-level Application Module.vos
- a vector of View Objects.clearVOCaches(String,
boolean)
public void findVOsWithEntityUsage(java.lang.String entityName, boolean recurse, java.util.Vector vos)
public void clearVOCaches(java.lang.String entityName, boolean recurse)
clearCache()
on each View Object.
If entityName is null, then the caches of all View Objects in the Application Module are cleared. If recurse is true, it recurses into nested (child) Application Modules.
clearVOCaches
in interface ApplicationModule
entityName
- name of the Entity Object that the View Objects use. Can be
null.recurse
- true recurses to (child) Application Modules;
false applies this method only to the top-level Application Module.ViewObject.clearCache()
public java.lang.String getClientProxyClassName()
Returns the client proxy's class name for this Application Module.
public java.lang.String getClientProxyClassName(java.lang.String serverType)
Returns the client proxy's class name for this Application Module. for the given server platform type
public void setExceptionHandler(JboExceptionHandler hndlr)
In typical use in three tier mode, a user enters values at the client. A user response, such as pressing the Return key or a Submit button, pushes the values to the server. The values are applied to the Entities and validated. Any exceptions that are thrown, are collected and shipped back to the client. Typically, exceptions are given, one-by-one, to the client. Instead, a handler can be specified to perform special processing of the exceptions.
setExceptionHandler
in interface ApplicationModule
hndlr
- an exception handler.public void addWarning(JboWarning warn)
addWarning
in interface ApplicationModule
warn
- a warning.public void setStyles(java.lang.String name, ClientDocument clientDocument)
setStyles
in interface ApplicationModule
name
- a name under which the style definitions are to be stored.clientDocument
- the ClientDocument
to be saved.public ClientDocument getStyles(java.lang.String name)
getStyles
in interface ApplicationModule
name
- a name under which the style definitions are stored.public Session getSession()
activate
call.getSession
in interface ApplicationModule
activate(Session)
public Transaction getTransaction()
getTransaction
in interface ApplicationModule
oracle.jbo.ApplicationModule
public RowSetIterator findRSIForEntity(RowSetIterator[] rsis, int eRowHandle)
If an error occurs while an entity
is being posted to database, the framework throws a
DMLException
. Inside the DMLException instance is an opaque
handle (in reality an integer) identifying the Entity (an
instance of EntityImpl) that caused the error.
For example, the DMLException could have been thrown because the row violated a database constraint. The client might want to give the user a chance to correct the problem by displaying the the ViewRow that uses this Entity.
To do this, the client would "gather" all RowSetIterators that can be used to report and fix the problem. It would then call findRSIForEntity, passing in the array of RowSetIterators and the Entity row handle returned by DMLException.
Among the RowSetIterator elements in the array, findRSIForEntity will pick the "best" one and return it to the client. The client then can use the RowSetIterator to report the problem and give the user a chance to fix the problem.
findRSIForEntity
in interface ApplicationModule
rsis
- an array of RowSetIteratorseRowHandle
- an Entity row handle returned by DMLException.DMLException
public void setStoreForPassiveState(byte storageType)
ApplicationModule
Determines where the Application Module will store serialized versions of its session-state, plus any cached changes. This information can be stored to the database, to a file, or to memory, based on the value of the storageType parameter. The storageType can be set to:
ApplicationModule.PASSIVATE_TO_DATABASE
(default target)ApplicationModule.PASSIVATE_TO_FILE
ApplicationModule.PASSIVATE_TO_MEMORY
This method should be called before calling ApplicationModule.passivateState(byte[])
.
Note that once an Application Module has serialized
its state, it cannot be asked to change its store. This method will throw
an JboException
if this Application Module has already
stored its state earlier.
For example, the following code will set the storage to database, file, or memory, based on the value of the str parameter. Database is the default target:
String str = oracle.jbo.common.JboEnvUtil.getProperty("jbo.test.passivateStateTo"); if (str != null) { if (str.equals("file")) { appModule.setStoreForPassiveState(ApplicationModule.PASSIVATE_TO_FILE); } else if (str.equals("memory")) { appModule.setStoreForPassiveState(ApplicationModule.PASSIVATE_TO_MEMORY); }
setStoreForPassiveState
in interface ApplicationModule
oracle.jbo.ApplicationModule
storageType
- where the Application Module state is stored. Can be one
of ApplicationModule.PASSIVATE_TO_DATABASE
(default target),
ApplicationModule.PASSIVATE_TO_FILE
, or ApplicationModule.PASSIVATE_TO_MEMORY
.JboException
- if this Application Module has already
stored its state earlier.ApplicationModule.passivateState(byte[])
public int reservePassivationId()
ApplicationModule
Reserves a unique indentifier which may later be specified when passivating AM state as the identifier to be used for re-establishing AM state.
This method may be invoked to obtain a unique passivation identifier before passivation actually occurs. An example use case is an HTTP servlet that must encode all URLs with an Application Module's state identifier before that Application Module is passivated.
reservePassivationId
in interface ApplicationModule
oracle.jbo.ApplicationModule
ApplicationModule.passivateState(int, byte[]).
public int passivateState(byte[] clientData)
ApplicationModule
Serializes the current state of this Application Module's session, along with all changes cached, to a persistent store and returns a unique identifier with which to re-establish the state.
This method always works from the top-level Application Module. If you have nested Application Modules and you call this method on a inner Application Module, it will still work from the top-level module.
In contrast to ApplicationModule.activateState(int, boolean)
, which deserializes
a session-state from the persistent store, calling
passivateState, does not affect the transaction state.
The cached changes, or clientData, can be any information that a client might want to store. For example, a JSP client could store the additional client-state information in this byte array so that when the JSP client becomes active and connects to an Application Module later, it could get its passivated state from the Application Module. This would reduce the amount of state information stored at the client side to a bare minimum (typically just an Application Module persistence ID).
A value of null for clientData indicates that the state will be stored, but there is no client data to be preserved.
This method preserves currency. When ApplicationModule.activateState(int, boolean)
is
called, the active row is returned.
For example, the following code snippet inserts a new row in a View Object, then calls passivateState to save the Application Module state. The transaction is rolled back and activateState is called. The value of getCurrentRow called before the passivateState should match the the value of getCurrentRow called after activateState.
// create a View Object "depts" ViewObject depts = appModule.createViewObject("myDeptView", "myDeptViewDef"); // insert a new row into depts Row r = depts.createRow(); r.setAttribute("DeptNum","56"); depts.insertRow(r); Row afterInsert = depts.getCurrentRow(); // Passivate the Application Module state int id = appModule.passivateState(null); // rollback the transaction appModule.getTransaction.rollback(); // move the cursor to the last row -- just to make it interesting depts.last(); // now activate the Application Module state // currency should be on the new row inserted. appModule.activateState(id, false); Row afterActivate = depts.getCurrentRow();
The values afterInsert and afterActivate should be the same.
passivateState
in interface ApplicationModule
oracle.jbo.ApplicationModule
clientData
- cached changes, or any information that a client might
want to store.public int passivateState(int id, byte[] clientData)
ApplicationModule
Serializes the current state of this Application Module's session, along with all changes cached, to a persistent store and returns a unique identifier with which to re-establish the state.
This method accepts an id which represents the unique identifier that
should be used to re-establish the application module state. The id
must have been generated by invoking ApplicationModule.reservePassivationId()
.
For more information regarding passivation please see ApplicationModule.passivateState(byte[])
.
passivateState
in interface ApplicationModule
oracle.jbo.ApplicationModule
id
- a reserved passivation idclientData
- cached changes, or any information that a client might
want to store.oracle.jbo.server.ApplicationModule#reservePassivationId()
public byte[] activateState(int id, boolean remove)
ApplicationModule
Deserializes a session-state from the persistent store based on the given id. This method always works from the top-level Application Module. If you have nested Application Modules and you call this method on a inner Application Module, it will still work from the top-level module.
When this method is called, the rows that are updated are locked; new rows
are inserted into the transaction cache and posted. This is in contrast to
ApplicationModule.passivateState(byte[])
, which does not affect the transaction state.
The activateState method preserves currency. When it is
called, it will return the row that was active when
ApplicationModule.passivateState(byte[])
was called.
For an example usage of activateState, see ApplicationModule.passivateState(byte[])
.
The remove parameter gives you the option of removing the state or keeping it. A value of true will remove the session-state from the persistent store. If false is passed to the method, then the Application Module state remains in whatever persistence store was selected. It is up to the developer to devise a clean-up strategy for the redundant store.
activateState
in interface ApplicationModule
oracle.jbo.ApplicationModule
id
- a unique integer identifier associated with an instance of the
Application Module.remove
- true to remove the session-state from the persistent
store.ApplicationModule.passivateState(byte[])
method.public void removeState(int id)
ApplicationModule
Removes the Application Module's session-state, and any cached change information, from the persistent store based on the given id. For example:
appModule.removeState(id);
removeState
in interface ApplicationModule
oracle.jbo.ApplicationModule
id
- an unique integer identifier associated with an instance of the
Application Module.public static void launchTester(java.lang.String packageName, java.lang.String configName)
protected void passivateState(Document doc, Element parent)
This method lets customized Application Modules determine how they want to store private data. The only requirement is that this data should be stored under a child node under the parent element. Note that the data cannot be stored under the first child, because that is where default passivation routines always store the key.
By default, the Application Module does not store anything in this method. On
activation, the ApplicationModule calls activateState(Element)
with the parent element for the
reverse operation.
doc
- the name of the XML document where the custom data will be stored.parent
- the name of the parent element under which the custom data will be stored.protected void activateState(Element parent)
parent
- the name of the parent element under which the custom data resides.public ViewObject findViewObjectUsingEntity(ViewObject[] vos, java.lang.String eoName, java.lang.String[] attrNames)
ApplicationModule
findViewObjectUsingEntity
in interface ApplicationModule
oracle.jbo.ApplicationModule
vos
- an array of possible View Objects.entityName
- fully qualified name of the Entity object.
Should not be null
.attrName
- if empty, i.e., null
or an array
of length 0, then the attribute matching
rule will be skipped (see the above discussion).
If not empty, it should have only one element
and that element should be the name of an
attribute of the Entity. The attribute matching
rule will apply. If a matching View Object is found,
attrName[0] upon return should have the name
of a View Object mapped to the Entity attribute.protected void afterConnect()
protected void beforeDisconnect()
|
Business Components | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |