Package org.apache.openjpa.jdbc.kernel
Interface JDBCSeq
-
- All Known Implementing Classes:
AbstractJDBCSeq
,ClassTableJDBCSeq
,NativeJDBCSeq
,TableJDBCSeq
,ValueTableJDBCSeq
public interface JDBCSeq extends Seq
Specialization of the theSeq
interface to provide information on the schema needed by this sequence. Only sequences that require special tables that must be created by OpenJPA tools need to implement this interface.- Author:
- Abe White
-
-
Field Summary
-
Fields inherited from interface org.apache.openjpa.kernel.Seq
TYPE_CONTIGUOUS, TYPE_DEFAULT, TYPE_NONTRANSACTIONAL, TYPE_TRANSACTIONAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addSchema(ClassMapping mapping, SchemaGroup group)
Add any tables, etc needed by this factory for the given mapping to the given schema group, if they do not exist already.
-
-
-
Method Detail
-
addSchema
void addSchema(ClassMapping mapping, SchemaGroup group)
Add any tables, etc needed by this factory for the given mapping to the given schema group, if they do not exist already.
-
-