Skip Headers
Oracle® TopLink Developer's Guide
10g Release 3 (10.1.3.1.0)

Part Number B28218-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

26 Configuring a Relational Descriptor

This chapter describes how to configure a relational descriptor.

For more information, see the following:

Table 26-1 lists the default configurable options for a relational descriptor.

Relational Descriptor Configuration Overview

Table 26-1 lists the default configurable options for a relational descriptor.

Table 26-1 Configurable Options for Relational Descriptor

Option Type TopLink Workbench
Java

"Configuring Associated Tables"


Basic

Supported
Supported

"Configuring Primary Keys"


Basic

Supported
Supported

"Configuring Sequencing at the Descriptor Level"


Basic

Supported
Supported

"Configuring Read-Only Descriptors"


Advanced

Supported
Supported

"Configuring Unit of Work Conforming at the Descriptor Level"


Advanced

Supported
Supported

"Configuring Descriptor Alias"


Advanced

Supported
Unsupported.

"Configuring Descriptor Comments"


Advanced

Supported
Unsupported.

"Configuring Classes"

Basic

Supported
Unsupported.

"Configuring Named Queries at the Descriptor Level"


Advanced

Supported
Supported

"Configuring Custom SQL Queries for Basic Persistence Operations"


Advanced

Supported
Supported

"Configuring Query Timeout at the Descriptor Level"


Advanced

Supported
Supported

"Configuring Cache Refreshing"


Advanced

Supported
Supported

"Configuring Query Keys"


Advanced

Supported
Supported

"Configuring Interface Query Keys"


Advanced

Supported.


Supported.


"Configuring Interface Alias"


Advanced

Supported
Supported

"Configuring Cache Type and Size at the Descriptor Level"


Advanced

Supported
Supported

"Configuring Cache Isolation at the Descriptor Level"


Advanced

Supported.


Supported.


"Configuring Cache Coordination Change Propagation at the Descriptor Level"


Advanced

Supported.


Supported.


"Configuring Cache Expiration at the Descriptor Level"


Advanced

Supported.


Supported.


"Configuring Cache Existence Checking at the Descriptor Level"


Advanced

Supported.


Supported.


"Configuring a Descriptor With EJB Information"


Advanced

Supported
Supported

"Configuring a Relational Descriptor as a Class or Aggregate Type"


Advanced

Supported
Supported

"Configuring Reading Subclasses on Queries"


Advanced

Supported
Supported

"Configuring Inheritance for a Child (Branch or Leaf) Class Descriptor"


Advanced

Supported.


Supported.


"Configuring Inheritance for a Parent (Root) Descriptor"


Advanced

Supported
Supported

"Configuring Inheritance Expressions for a Parent (Root) Class Descriptor"


Advanced

Supported
Supported

"Configuring Inherited Attribute Mapping in a Subclass"


Advanced

Supported.


Supported.


"Configuring Multitable Information"


Advanced

Supported
Supported

"Configuring a Domain Object Method as an Event Handler"


Advanced

Supported.


Supported.


"Configuring a Descriptor Event Listener as an Event Handler"


Advanced

Supported.


Supported.


"Configuring Locking Policy"


Advanced

Supported
Supported

"Configuring Returning Policy"


Advanced

Supported
Supported

"Configuring Instantiation Policy"


Advanced

Supported
Supported

"Configuring Copy Policy"


Advanced

Supported
Supported

"Configuring Change Policy"


Advanced

Unsupported.


Supported.


"Configuring a History Policy"


Advanced

Unsupported.
Supported

"Configuring Wrapper Policy"


Advanced

Unsupported.
Supported

"Configuring Fetch Groups"


Advanced

Unsupported.


Supported.


"Configuring Amendment Methods"


Advanced

Supported

Unsupported.


"Configuring a Mapping"


Basic

Supported
Supported

Configuring Associated Tables

Each relational class descriptor (see "Relational Class Descriptors") must be associated with a database table for storing instances of that class. This does not apply to relational aggregate descriptors (see "Relational Aggregate Descriptors").

Using TopLink Workbench

To associate a descriptor with a database table, use this procedure:

  1. Select a descriptor in the Navigator. Its properties appear in the Editor.

  2. Click the Descriptor Info tab. The Descriptor Info tab appears.

    Figure 26-1 Descriptor Info Tab, Associated Table Options

    Description of Figure 26-1 follows
    Description of "Figure 26-1 Descriptor Info Tab, Associated Table Options"

Use the Associated Table list to select a database table for the descriptor. You must associate a descriptor with a database table before specifying primary keys.

Using Java

To configure a descriptor's associated table(s) using Java, use RelationalDescriptor methods setTableName or addTableName.

Configuring Sequencing at the Descriptor Level

Sequencing allows TopLink to automatically assign the primary key or ID of an object when the object is inserted.

You configure TopLink sequencing at the project level ("Configuring Sequencing at the Project Level") or session level (see "Configuring Sequencing at the Session Level") to tell TopLink how to obtain sequence values: that is, what type of sequences to use.

To enable sequencing, you must then configure TopLink sequencing at the descriptor level to tell TopLink into which table and column to write the sequence value when an instance of a descriptor's reference class is created.

Only descriptors that have been configured with a sequence field and a sequence name will be assigned sequence numbers.

The sequence field is the database field that the sequence number will be assigned to: this is almost always the primary key field (see "Configuring Primary Keys"). The sequence name is the name of the sequence to be used for this descriptor. The purpose of the sequence name depends on the type of sequencing you are using:

When using table sequencing, the sequence name refers to the row's SEQ_NAME value used to store this sequence.

When using Oracle native sequencing, the sequence name refers to the Oracle sequence object that has been created in the database. When using native sequencing on other databases, the sequence name does not have any direct meaning, but should still be set for compatibility.

The sequence name can also refer to a custom sequence defined in the project.

For more information, see "Understanding Sequencing in Relational Projects".

Using TopLink Workbench

To configure sequencing for a descriptor, use this procedure:

  1. Select a descriptor in the Navigator. Its properties appear in the Editor.

  2. Click the Descriptor Info tab. The Descriptor Info tab appears.

    Figure 26-2 Descriptor Info Tab, Sequencing Options

    Description of Figure 26-2 follows
    Description of "Figure 26-2 Descriptor Info Tab, Sequencing Options"

Use the following information to specify sequencing options:

Field Description
Use Sequencing Specify if this descriptor uses sequencing. If selected, specify the Name, Table, and Field for sequencing.
    Name Enter the name of the sequence.
  • For table sequencing: Enter the name of the value in the sequence name column (for default table sequencing, the column named SEQ_NAME) of the sequence table (for default table sequencing, the table named SEQUENCE) that TopLink uses to look up the corresponding sequence count value (for default table sequencing, the corresponding value in the SEQ_COUNT column) for this descriptor's reference class. For more information, see "Table Sequencing".

  • For native sequencing (Oracle platform): Enter the name of the sequence object that Oracle Database creates to manage sequencing for this descriptor's reference class. For more information, see "Native Sequencing With an Oracle Database Platform"

  • For native sequencing (non-Oracle platform): For database compatibility, enter a generic name for the sequence, such as SEQ. For more information, see "Native Sequencing With a Non-Oracle Database Platform".

    Table Specify the name of the database table that contains the field (see Field) into which TopLink is to write the sequence value when a new instance of this descriptor's reference class is created. This is almost always this descriptor's primary table.
    Field Specify the name of the field in the specified table (see Table) into which TopLink is to write the sequence value when a new instance of this descriptor's reference class is created. This field is almost always the class's primary key (see "Configuring Primary Keys").

Using Java

Using Java, you can configure sequencing to use multiple different types of sequence for different descriptors. You configure the sequence objects on the session's login and reference them from the descriptor by their name. The descriptor's sequence name refers to the sequence object's name you register in the session's login.

The following examples assume the session sequence configuration shown in Example 26-1.

Example 26-1 Example Sequences

dbLogin.addSequence(new TableSequence("EMP_SEQ", 25));
dbLogin.addSequence(new DefaultSequence("PHONE_SEQ", 30));
dbLogin.addSequence(new UnaryTableSequence("ADD_SEQ", 55));
dbLogin.addSequence(new NativeSequence("NAT_SEQ", 10));

Using Java code, you can perform the following sequence configurations:

Configuring a Sequence by Name

As Example 26-2 shows, you associate a sequence with a descriptor by sequence name. The sequence EMP_SEQ was added to the login for this project in Example 26-1. When a new instance of the Employee class is created, the TopLink runtime will use the sequence named EMP_SEQ (in this example, a TableSequence) to obtain a value for the EMP_ID field.

Example 26-2 Associating a Sequence with a Descriptor

empDescriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
empDescriptor.setSequenceNumberName("EMP_SEQ");

Configuring the Same Sequence for Multiple Descriptors

As Example 26-3 shows, you can associate the same sequence with more than one descriptor. In this example, both the Employee descriptor and Phone descriptor use the same NativeSequence. Having descriptors share the same sequence can improve pre-allocation performance. For more information on pre-allocation, see "Sequencing and Preallocation Size".

Example 26-3 Configuring a Sequence for Multiple Descriptors

empDescriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
empDescriptor.setSequenceNumberName("NAT_SEQ");
phoneDescriptor.setSequenceNumberFieldName("PHONE_ID"); // primary key field
phoneDescriptor.setSequenceNumberName("NAT_SEQ");

Configuring the Platform Default Sequence

In Example 26-4, you associate a nonexistent sequence (NEW_SEQ) with a descriptor. Because you did not add a sequence named NEW_SEQ to the login for this project in Example 26-1, the TopLink runtime will create a DefaultSequence named NEW_SEQ for this descriptor. For more information about DefaultSequence, see "Default Sequencing".

Example 26-4 Configuring a Default Sequence

descriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
descriptor.setSequenceNumberName("NEW_SEQ");

Configuring Custom SQL Queries for Basic Persistence Operations

You can use TopLink to define an SQL query for each basic persistence operation (insert, update, delete, read-object, read-all, or does-exist) so that when you query and modify your relational-mapped objects, the TopLink runtime will use the appropriate SQL query instead of the default SQL query.

SQL strings can include any fields that the descriptor maps, as well as arguments. You specify arguments in the SQL string using #<arg-name>, such as:

select * from EMP where EMP_ID = #EMP_ID

The insert and update SQL strings can take any field that the descriptor maps as an argument.

The read-object, delete and does-exist SQL strings can only take the primary key fields as arguments.

The read-all SQL string must return all instances of the class and thus can take no arguments.

You can define a custom SQL string for insert, update, delete, read-object, and read-all using TopLink Workbench (see "Using TopLink Workbench").

You can define a custom SQL string or Call object for insert, update, delete, read-object, read-all, and does-exist using Java (see "Using Java"). Using a Call, you can define more complex SQL strings and invoke custom stored procedures.

For CMP projects, the ejb-jar.xml file stores query lists. You can define the queries in the file and then read them into TopLink Workbench (see "Reading From the ejb-jar.xml File"), or define them on the Queries tab and write them to the file (see "Writing to the ejb-jar.xml File").


Note:

When you customize the update persistence operation for an application that uses optimistic locking (see "Configuring Locking Policy"), the custom update string must not write the object if the row version field has changed since the initial object was read. In addition, it must increment the version field if it writes the object successfully.

For example:

update Employee set F_NAME = #F_NAME, VERSION = VERSION + 1 where (EMP_ID = #EMP_ID) AND (VERSION = #VERSION)

The update string must also maintain the row count of the database.



Note:

TopLink does not validate the SQL code that you enter. Enter the SQL code appropriate for your database platform (see "Data Source Platform Types").

Using TopLink Workbench

To configure custom SQL queries for basic persistence operations:

  1. In the Navigator, select a descriptor in a relational database project.

  2. Click the Queries tab in the Editor.

  3. Click the Custom SQL tab.

    Figure 26-3 Queries, Custom SQL Tab

    Description of Figure 26-3 follows
    Description of "Figure 26-3 Queries, Custom SQL Tab"

Click the appropriate SQL function tab and type your own SQL string to control these actions for a descriptor. Use the following information to complete the tab:

Tab Description
Insert Defines the insert SQL that TopLink uses to insert a new object's data into the database.
Update Defines the update SQL that TopLink uses to update any changed existing object's data in the database.

When you define a descriptor's update query, you must conform to the following:

  • If the application uses optimistic locking, you must ensure that the row is not written if the version field has changed since the object was read.

  • The update query must increment the version field if the row is written.

  • The update string must maintain the row count of the database.

Delete Defines the delete SQL that TopLink uses to delete an object.
Read Object Defines the read SQL that TopLink uses in any ReadObjectQuery, whose selection criteria is based on the object's primary key.

When you define a descriptor's read-object query, your implementation overrides any ReadObjectQuery, whose selection criteria is based on the object's primary key. TopLink generates dynamic SQL for all other Session readObject method signatures.

To customize other Session readObject method signatures, define additional named queries and use them in your application instead of the Session methods.

Read All Defines the read-all SQL that TopLink uses when you call Session method readAllObjects(java.lang.Class) passing in the java.lang.Class that this descriptor represents.

When you define a descriptor's read-all query, your implementation overrides only the Session method readAll(java.lang.Class), not the version that takes a Class and Expression. As a result, this query reads every single instance. TopLink generates dynamic SQL for all other Session readAll method signatures.

To customize other Session readAll method signatures, define additional named queries and use them in your application instead of the Session methods.


Using Java

The DescriptorQueryManager generates default SQL for the following persistence operations:

  • Insert

  • Update

  • Delete

  • Read-object

  • Read-all

  • Does-exist

Using Java code, you can use the descriptor query manager to provide custom SQL strings to perform these functions on a class-by-class basis.

Use ClassDescriptor method getQueryManager to acquire the DescriptorQueryManager, and then use the DescriptorQueryManager methods that Table 26-2 lists.

Table 26-2 Descriptor Query Manager Methods for Configuring Custom SQL

To Change the Default SQL for ... Use Descriptor Query Manager Method ...

Insert

setInsertQuery (InsertObjectQuery query)


setInsertSQLString (String sqlString)


setInsertCall(Call call)

Update

setUpdateQuery (UpdateObjectQuery query)


setUpdateSQLString (String sqlString)


setUpdateCall(Call call)

Delete

setDeleteQuery (DeleteObjectQuery query)


setDeleteSQLString (String sqlString)


setDeleteCall(Call call)

Read

setReadObjectQuery (ReadObjectQuery query)


setReadObjectSQLString (String sqlString)


setReadObjectCall(Call call)

Read all

setReadAllQuery (ReadAllQuery query)


setReadAllSQLString (String sqlString)


setReadAllCall(Call call)

Does exist

setDoesExistQuery(DoesExistQuery query)


setDoesExistSQLString(String sqlString)


setDoesExistCall(Call call)


Example 26-5 shows how to implement an amendment method to configure a descriptor query manager to use custom SQL strings. Alternatively, using an SQLCall, you can specify more complex SQL strings using features such as in, out, and in-out parameters and parameter types (see "Using SQL Calls").

Example 26-5 Configuring a Descriptor Query Manager with Custom SQL Strings

public static void addToDescriptor(ClassDescriptor descriptor) {

    // Read-object by primary key procedure
    descriptor.getQueryManager().setReadObjectSQLString(
        "select * from EMP where EMP_ID = #EMP_ID"
    );

    // Read-all instances procedure
    descriptor.getQueryManager().setReadAllSQLString(
        "select * from EMP"
    );

    // Insert procedure
    descriptor.getQueryManager().setInsertSQLString(
        "insert into EMP (EMP_ID, F_NAME, L_NAME, MGR_ID) values (#EMP_ID, #F_NAME, #L_NAME, #MGR_ID)"
    );

    // Update procedure
    descriptor.getQueryManager().setUpdateSQLString(
        "update EMP set (F_NAME, L_NAME, MGR_ID) values (#F_NAME, #L_NAME, #MGR_ID) where EMP_ID = #EMP_ID"
    );
}

Example 26-6 shows how to implement an amendment method to configure a descriptor query manager to use Oracle stored procedures using a StoredProcedureCall (see "Using a StoredProcedureCall"). This example uses output cursors to return the result set (see "Handling Cursor and Stream Query Results").

Example 26-6 Configuring a Descriptor Query Manager with Custom Stored Procedure Calls

public static void addToDescriptor(ClassDescriptor descriptor) {
 
    // Read-object by primary key procedure
    StoredProcedureCall readCall = new StoredProcedureCall();
    readCall.setProcedureName("READ_EMP");
    readCall.addNamedArgument("P_EMP_ID", "EMP_ID");       readCall.useNamedCursorOutputAsResultSet("RESULT_CURSOR");       descriptor.getQueryManager().setReadObjectCall(readCall);
 
    // Read-all instances procedure
    StoredProcedureCall readAllCall = new StoredProcedureCall();
    readAllCall.setProcedureName("READ_ALL_EMP");
    readAllCall.useNamedCursorOutputAsResultSet("RESULT_CURSOR");         descriptor.getQueryManager().setReadAllCall(readAllCall );
 
    // Insert procedure
    StoredProcedureCall insertCall = new StoredProcedureCall();
    insertCall.setProcedureName("INSERT_EMP");
    insertCall.addNamedArgument("P_EMP_ID", "EMP_ID"); 
    insertCall.addNamedArgument("P_F_NAME", "F_NAME");
    insertCall.addNamedArgument("P_L_NAME", "L_NAME");
    insertCall.addNamedArgument("P_MGR_ID", "MGR_ID");
    descriptor.getQueryManager().setInsertCall(insertCall);
 
    // Update procedure
    StoredProcedureCall updateCall = new StoredProcedureCall();      updateCall.setProcedureName("UPDATE_EMP");
    updateCall.addNamedArgument("P_EMP_ID", "EMP_ID"); 
    updateCall.addNamedArgument("P_F_NAME", "F_NAME");
    updateCall.addNamedArgument("P_L_NAME", "L_NAME");
    updateCall.addNamedArgument("P_MGR_ID", "MGR_ID");
    descriptor.getQueryManager().setUpdateCall(updateCall);
}

Configuring Interface Alias

An interface alias allows an interface to be used to refer to a descriptor instead of the implementation class. This can be useful for classes that have public interface and the applications desire to refer to the class using the public interface. Specifying the interface alias allows any queries executed on a TopLink session to use the interface as the reference class instead of the implementation class.

This section includes information on configuring an interface alias. Interfaces cannot be created in TopLink Workbench, you must add the Java package or class to your TopLink Workbench project before configuring it.

Using TopLink Workbench

Use the Interface Alias tab to specify a descriptor's alias. Each descriptor can have one interface alias. Use the interface in queries and relationship mappings.


Note:

If you use an interface alias, do not associate an interface descriptor with the interface.

To specify an interface alias, use this procedure:

  1. In the Navigator, select a descriptor.

    If the Interface Alias advanced property is not visible for the descriptor, right-click the descriptor and choose Select Advanced Properties > Interface Alias from context menu or from the Selected menu.

  2. Click the Interface Alias tab.

    Figure 26-4 Interface Alias Tab

    Description of Figure 26-4 follows
    Description of "Figure 26-4 Interface Alias Tab"

In the Interface Alias field, click Browse and select an interface.

Using Java

To configure a descriptor with an interface alias using Java, create an amendment method (see "Configuring Amendment Methods") and use InterfacePolicy method addParentInterface as Example 26-7 shows.

Example 26-7 Configuring an Interface Alias

public static void addToDescriptor(Descriptor descriptor) {
    descriptor.getInterfacePolicy().addParentInterface(MyInterface.class);
}

Configuring a Relational Descriptor as a Class or Aggregate Type

By default, when you add a Java class to a relational project (see "Configuring Project Classpath"), TopLink Workbench creates a relational class descriptor for it. A class descriptor is applicable to any persistent object except an object that is owned by another in an aggregate relationship. In this case, you must describe the owned object with an aggregate descriptor. Using a class descriptor, you can configure any relational mapping except aggregate collection and aggregate object mappings.

An aggregate object is an object that is strictly dependent on its owning object. Aggregate descriptors do not define a table, primary key, or many of the standard descriptor options as they obtain these from their owning descriptor. If you want to configure an aggregate mapping to associate data members in a target object with fields in a source object's underlying database tables (see Chapter 41, "Configuring a Relational Aggregate Collection Mapping" and Chapter 43, "Configuring a Relational Aggregate Object Mapping"), you must designate the target object's descriptor as an aggregate.

Alternatively, you can remove the aggregate designation from a relational descriptor and return it to its default type.

You can configure inheritance for a descriptor designated as an aggregate (see "Configuring Inheritance for a Child (Branch or Leaf) Class Descriptor"), however, in this case, all the descriptors in the inheritance tree must be aggregates. Aggregate and class descriptors cannot exist in the same inheritance tree. For more information, see "Aggregate and Composite Descriptors and Inheritance".

If you configure a descriptor as an aggregate, you cannot configure the descriptor with EJB information (see "Configuring a Descriptor With EJB Information").

For more information, see "Descriptors and Aggregation".

Using TopLink Workbench

To configure a relational descriptor as class or aggregate, use this procedure.

  1. In the Navigator, select a relational descriptor.

  2. Click the Class or Aggregate descriptor button on the mapping toolbar.

    You can also select the descriptor and choose Selected > Descriptor Type > Class or Aggregate from the menu or by right-clicking on the descriptor in the Navigator window and selecting Descriptor Type > Class or Aggregate from the context menu.

  3. Direct to Field Mapping button
    If you select Aggregate, specify each of the aggregate descriptor's attributes as a direct to field mapping. See Chapter 35, "Configuring a Relational Direct-to-Field Mapping" for more information.

Although the attributes of a target class are not mapped directly to a data source until you configure an aggregate object mapping, you must still specify their mapping type in the target class's descriptor. This tells TopLink what type of mapping to use when you do configure the aggregate mapping in the source object's descriptor. For more information, see "Aggregate and Composite Descriptors in Relational Projects".

Using Java

Using Java, to configure a relational descriptor as an aggregate, use ClassDescriptor method descriptorIsAggregate.

To configure a relational descriptor for use in an aggregate collection mapping, use ClassDescriptor method descriptorIsAggregateCollection.

To configure a relational descriptor as a nonaggregate, use ClassDescriptor method descriptorIsNormal.

Configuring Multitable Information

Descriptors can use multiple tables in mappings. Use multiple tables when either of the following occurs:

When a descriptor has multiple tables, you must be able to join a row from the primary table to all the additional tables. By default, TopLink assumes that the primary key of the first, or primary, table is included in the additional tables, thereby joining the tables. TopLink also supports custom methods for joining tables. If the primary key field names of the multiple tables do not match, a foreign key can be used to join the tables. The foreign key can either be from the primary table to the secondary table, or from the secondary table to the primary table, or between two of the secondary tables (see "Using TopLink Workbench").

For complex multitable situations, a more complex join expression may be required. These include requiring the join to also check a type code, or using an outer-join. TopLink provides support for a multiple-table-join-expression for these cases (see "Using Java").

Using TopLink Workbench

Use the Multitable Info tab to define multiple tables for a descriptor in TopLink Workbench.

To associate multiple tables with a descriptor, use this procedure.

  1. In the Navigator, select a descriptor.

    If the Multitable Info advanced property is not visible for the descriptor, right-click the descriptor and choose Select Advanced Properties > Multitable Info from the context menu or from the Selected menu.

  2. Click the Multitable Info tab.

    Figure 26-5 Multitable Info Tab

    Description of Figure 26-5 follows
    Description of "Figure 26-5 Multitable Info Tab"

Use the following information to enter data in each field of the tab:

Field Description
Primary Table The primary table for this descriptor. This field is for display only.
Additional Tables Use Add and Remove to add or remove additional tables.
Association to Primary Table Specify how each Additional Table is associated to the Primary Table:
  • Primary Keys Have Same Names–when associating tables by identically named primary keys, TopLink requires no additional configuration.

  • Reference–when associating an additional table to the primary table with a Reference (that is, a foreign key), you can specify the Table Reference, as well as the Source and Target fields. Continue with "Associating Tables With References".


Associating Tables With References

When associating a table using Reference, additional options appear. You must choose a reference that relates the correct fields in the primary table to the primary keys in the selected table.

Figure 26-6 Multitable Info Tab, Associated by Reference

Description of Figure 26-6 follows
Description of "Figure 26-6 Multitable Info Tab, Associated by Reference"

Choose a Table Reference that defines how the primary keys of the primary table relate to the primary keys of the selected table. Click Add to add a primary key association.

Using Java

Using Java, configure a descriptor with multitable information using the following ClassDescriptor methods:

  • addTableName

  • addMultipleTableForeignKeyFieldName

To specify a complex multiple-table-join-expression, create a descriptor amendment method (see "Configuring Amendment Methods") and add the join expression using DescriptorQueryManager method setMultipleTableJoinExpression. For more information, see "Appending Additional Join Expressions".