org.apache.openjpa.jdbc.meta
Class ClassMappingInfo

java.lang.Object
  extended by org.apache.openjpa.jdbc.meta.MappingInfo
      extended by org.apache.openjpa.jdbc.meta.ClassMappingInfo
All Implemented Interfaces:
Serializable, SourceTracker, Commentable

public class ClassMappingInfo
extends MappingInfo
implements SourceTracker, Commentable

Information about the mapping from a class to the schema, in raw form. The columns and tables used in mapping info will not be part of the SchemaGroup used at runtime. Rather, they will be structs with the relevant pieces of information filled in.

Author:
Abe White
See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class org.apache.openjpa.jdbc.meta.MappingInfo
MappingInfo.ForeignKeyDefaults, MappingInfo.TableDefaults
 
Field Summary
 
Fields inherited from class org.apache.openjpa.jdbc.meta.MappingInfo
JOIN_FORWARD, JOIN_INVERSE, JOIN_NONE
 
Fields inherited from interface org.apache.openjpa.lib.meta.SourceTracker
SRC_ANNOTATIONS, SRC_OTHER, SRC_XML
 
Fields inherited from interface org.apache.openjpa.lib.xml.Commentable
EMPTY_COMMENTS
 
Constructor Summary
ClassMappingInfo()
           
 
Method Summary
 void addUnique(Unique unique)
           
protected  void clear(boolean canFlags)
          Clear mapping information.
 void copy(MappingInfo info)
          Copy missing info from the instance to this one.
 String getClassName()
          The described class name.
 String[] getComments()
          Return comments, or empty array if none.
 Column[] getDataStoreIdColumns(ClassMapping cls, Column[] tmplates, Table table, boolean adapt)
          Return the datastore identity columns for the given class, based on the given templates.
 String getHierarchyStrategy()
          The default strategy for subclasses in this hierarchy.
 String getResourceName()
          Return the domain-meaningful name of the resource that was loaded from this source.
 String getSchemaName()
          The default schema name for unqualified tables.
 List getSecondaryTableJoinColumns(String tableName)
          Return any columns defined for the given class level join, or empty list if none.
 String getSecondaryTableName(String tableName)
          We allow fields to reference class-level joins using just the table name, whereas the class join might have schema, etc information.
 String[] getSecondaryTableNames()
          Return the class-level joined tables.
 File getSourceFile()
          Return the file from which this instance was parsed.
 Object getSourceScope()
          Return the domain-dependent scope of this instance within its file.
 int getSourceType()
          Return the type of source.
 ForeignKey getSuperclassJoin(ClassMapping cls, Table table, boolean adapt)
          Return the join from this class to its superclass.
 Table getTable(ClassMapping cls, boolean adapt)
          Return the table for the given class.
 String getTableName()
          The given table name.
 Unique[] getUniques()
           
 Unique[] getUniques(ClassMapping cm, boolean adapt)
           
 boolean hasSchemaComponents()
          Return true if this info has columns, foreign key information, index information, etc.
 boolean isJoinedSubclass()
          Whether there is a join to the superclass table.
 void setClassName(String name)
          The described class name.
 void setComments(String[] comments)
          Set comments.
 void setHierarchyStrategy(String strategy)
          The default strategy for subclasses in this hierarchy.
 void setJoinedSubclass(boolean joined)
          Whether there is a join to the superclass table.
 void setSchemaName(String schema)
          The default schema name for unqualified tables.
 void setSecondaryTableJoinColumns(String tableName, List cols)
          Declare the given class-level join.
 void setSource(File file, int srcType)
           
 void setTableName(String table)
          The given table name.
 void syncWith(ClassMapping cls)
          Synchronize internal information with the mapping data for the given class.
 
Methods inherited from class org.apache.openjpa.jdbc.meta.MappingInfo
assertNoForeignKey, assertNoIndex, assertNoJoin, assertNoSchemaComponents, assertNoUnique, assertStrategy, canForeignKey, canIndex, canUnique, clear, createColumns, createForeignKey, createIndex, createTable, createUnique, getColumnIO, getColumns, getForeignKey, getIndex, getJoinDirection, getStrategy, getUnique, mergeColumn, setCanForeignKey, setCanIndex, setCanUnique, setColumnIO, setColumns, setForeignKey, setIndex, setJoinDirection, setStrategy, setUnique, syncColumn, syncColumns, syncForeignKey, syncIndex, syncUnique
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassMappingInfo

public ClassMappingInfo()
Method Detail

getClassName

public String getClassName()
The described class name.


setClassName

public void setClassName(String name)
The described class name.


getHierarchyStrategy

public String getHierarchyStrategy()
The default strategy for subclasses in this hierarchy.


setHierarchyStrategy

public void setHierarchyStrategy(String strategy)
The default strategy for subclasses in this hierarchy.


getTableName

public String getTableName()
The given table name.


setTableName

public void setTableName(String table)
The given table name.


getSchemaName

public String getSchemaName()
The default schema name for unqualified tables.


setSchemaName

public void setSchemaName(String schema)
The default schema name for unqualified tables.


isJoinedSubclass

public boolean isJoinedSubclass()
Whether there is a join to the superclass table.


setJoinedSubclass

public void setJoinedSubclass(boolean joined)
Whether there is a join to the superclass table.


getSecondaryTableNames

public String[] getSecondaryTableNames()
Return the class-level joined tables.


getSecondaryTableName

public String getSecondaryTableName(String tableName)
We allow fields to reference class-level joins using just the table name, whereas the class join might have schema, etc information. This method returns the name of the given table as listed in a class-level join, or the given name if no join exists.


getSecondaryTableJoinColumns

public List getSecondaryTableJoinColumns(String tableName)
Return any columns defined for the given class level join, or empty list if none.


setSecondaryTableJoinColumns

public void setSecondaryTableJoinColumns(String tableName,
                                         List cols)
Declare the given class-level join.


getTable

public Table getTable(ClassMapping cls,
                      boolean adapt)
Return the table for the given class.


getDataStoreIdColumns

public Column[] getDataStoreIdColumns(ClassMapping cls,
                                      Column[] tmplates,
                                      Table table,
                                      boolean adapt)
Return the datastore identity columns for the given class, based on the given templates.


getSuperclassJoin

public ForeignKey getSuperclassJoin(ClassMapping cls,
                                    Table table,
                                    boolean adapt)
Return the join from this class to its superclass. The table for this class must be set.


syncWith

public void syncWith(ClassMapping cls)
Synchronize internal information with the mapping data for the given class.


hasSchemaComponents

public boolean hasSchemaComponents()
Description copied from class: MappingInfo
Return true if this info has columns, foreign key information, index information, etc.

Overrides:
hasSchemaComponents in class MappingInfo

clear

protected void clear(boolean canFlags)
Description copied from class: MappingInfo
Clear mapping information.

Overrides:
clear in class MappingInfo
Parameters:
canFlags - whether to clear information about whether we can place indexed, foreign keys, etc on this mapping

copy

public void copy(MappingInfo info)
Description copied from class: MappingInfo
Copy missing info from the instance to this one.

Overrides:
copy in class MappingInfo

addUnique

public void addUnique(Unique unique)

getUniques

public Unique[] getUniques()

getUniques

public Unique[] getUniques(ClassMapping cm,
                           boolean adapt)

getSourceFile

public File getSourceFile()
Description copied from interface: SourceTracker
Return the file from which this instance was parsed.

Specified by:
getSourceFile in interface SourceTracker

getSourceScope

public Object getSourceScope()
Description copied from interface: SourceTracker
Return the domain-dependent scope of this instance within its file.

Specified by:
getSourceScope in interface SourceTracker

getSourceType

public int getSourceType()
Description copied from interface: SourceTracker
Return the type of source.

Specified by:
getSourceType in interface SourceTracker

setSource

public void setSource(File file,
                      int srcType)

getResourceName

public String getResourceName()
Description copied from interface: SourceTracker
Return the domain-meaningful name of the resource that was loaded from this source. I.e., if we had loaded the source for a Java class, this would return the name of the class.

Specified by:
getResourceName in interface SourceTracker

getComments

public String[] getComments()
Description copied from interface: Commentable
Return comments, or empty array if none.

Specified by:
getComments in interface Commentable

setComments

public void setComments(String[] comments)
Description copied from interface: Commentable
Set comments.

Specified by:
setComments in interface Commentable


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