org.apache.torque.engine.database.model
Interface IDMethod

All Known Implementing Classes:
Table

public interface IDMethod

Interface for various ID retrieval method types. This currently includes native, ID broker, and none.

Version:
$Id: IDMethod.java,v 1.1 2007-10-21 07:57:27 abyrne Exp $
Author:
Daniel Rall

Field Summary
static String ID_BROKER
          Key generation via the IDBroker table.
static String NATIVE
          Key generation via database-specific ID method.
static String NO_ID_METHOD
          No RDBMS key generation (keys may be generated by the application).
 

Field Detail

NATIVE

static final String NATIVE
Key generation via database-specific ID method. For example, this would be auto-increment for MySQL, sequence for Oracle, etc.

See Also:
Constant Field Values

ID_BROKER

static final String ID_BROKER
Key generation via the IDBroker table.

See Also:
Constant Field Values

NO_ID_METHOD

static final String NO_ID_METHOD
No RDBMS key generation (keys may be generated by the application).

See Also:
Constant Field Values


Copyright © 2004-2012 The Kuali Foundation. All Rights Reserved.