Uses of Class
org.apache.openjpa.jdbc.schema.Schema

Packages that use Schema
org.apache.openjpa.jdbc.meta OpenJPA-JDBC ORM Metadata 
org.apache.openjpa.jdbc.schema OpenJPA-JDBC Schema Management 
org.apache.openjpa.jdbc.sql OpenJPA-JDBC SQL Abstraction 
org.apache.openjpa.persistence.jdbc OpenJPA JPA-JDBC 
 

Uses of Schema in org.apache.openjpa.jdbc.meta
 

Methods in org.apache.openjpa.jdbc.meta with parameters of type Schema
 String MappingInfo.TableDefaults.get(Schema schema)
          Return the default table name.
 String MappingDefaultsImpl.getTableName(ClassMapping cls, Schema schema)
           
 String MappingDefaults.getTableName(ClassMapping cls, Schema defaultSchema)
          Return the default table name for the given class.
 String NoneMappingDefaults.getTableName(ClassMapping cls, Schema schema)
           
 String MappingDefaultsImpl.getTableName(FieldMapping fm, Schema schema)
           
 String MappingDefaults.getTableName(FieldMapping fm, Schema defaultSchema)
          Return the default secondary table name for the given field.
 String NoneMappingDefaults.getTableName(FieldMapping fm, Schema schema)
           
 

Uses of Schema in org.apache.openjpa.jdbc.schema
 

Methods in org.apache.openjpa.jdbc.schema that return Schema
 Schema SchemaGroup.addSchema()
          Add a schema to the group.
 Schema SchemaGroup.addSchema(String name)
          Add a schema to the group.
 Schema Table.getSchema()
          Return the schema for the table.
 Schema Sequence.getSchema()
          Return the schema for the sequence.
 Schema SchemaGroup.getSchema(String name)
          Return the schema with the given name, or null if none.
 Schema[] SchemaGroup.getSchemas()
          Return all schemas.
 Schema SchemaGroup.importSchema(Schema schema)
          Import a schema from another group.
protected  Schema SchemaGroup.newSchema(String name)
          Return a new schema with the given name.
 

Methods in org.apache.openjpa.jdbc.schema with parameters of type Schema
 void XMLSchemaSerializer.addAll(Schema schema)
           
 void SchemaSerializer.addAll(Schema schema)
          Add the given schema's objects to the set of objects that will be serialized.
 Sequence SchemaGroup.findSequence(Schema inSchema, String name)
          Find the sequence with the given name in the group, using '.' as the catalog separator.
 Table SchemaGroup.findTable(Schema inSchema, String name)
          Find the table with the given name in the group, using '.' as the catalog separator.
 Schema SchemaGroup.importSchema(Schema schema)
          Import a schema from another group.
protected  Sequence SchemaGroup.newSequence(String name, Schema schema)
          Return a new sequence with the given name and owner schema.
protected  Table DynamicSchemaFactory.newTable(String name, Schema schema)
           
protected  Table SchemaGroup.newTable(String name, Schema schema)
          Return a new table with the given name and owner schema.
 boolean XMLSchemaSerializer.removeAll(Schema schema)
           
 boolean SchemaSerializer.removeAll(Schema schema)
          Remove the given schema's objects from the set to be serialized.
 boolean SchemaGroup.removeSchema(Schema schema)
          Remove the given schema from the group.
 

Constructors in org.apache.openjpa.jdbc.schema with parameters of type Schema
Sequence(String name, Schema schema)
          Constructor.
Table(String name, Schema schema)
          Constructor.
 

Uses of Schema in org.apache.openjpa.jdbc.sql
 

Methods in org.apache.openjpa.jdbc.sql with parameters of type Schema
 void DBDictionary.createIndexIfNecessary(Schema schema, String table, Column pkColumn)
          Create an index if necessary for some database tables
 void DB2Dictionary.createIndexIfNecessary(Schema schema, String table, Column pkColumn)
          Create an index if necessary for some database tables
 String DBDictionary.getValidSequenceName(String name, Schema schema)
          Make any necessary changes to the given sequence name to make it valid for the current DB.
 String DBDictionary.getValidTableName(String name, Schema schema)
          Make any necessary changes to the given table name to make it valid for the current DB.
 

Uses of Schema in org.apache.openjpa.persistence.jdbc
 

Methods in org.apache.openjpa.persistence.jdbc with parameters of type Schema
 String PersistenceMappingDefaults.getTableName(ClassMapping cls, Schema schema)
           
 String PersistenceMappingDefaults.getTableName(FieldMapping fm, Schema schema)
           
 



Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.