Package org.eclipse.persistence.internal.jpa.metadata.columns

Examples of org.eclipse.persistence.internal.jpa.metadata.columns.PrimaryKeyForeignKeyMetadata


                m_primaryKeyJoinColumns.add(primaryKeyJoinColumn);
            }
           
            // Set the foreign key if one is specified in the annotation.
            if (secondaryTable.hasAttribute("foreignKey")) {
                m_primaryKeyForeignKey = new PrimaryKeyForeignKeyMetadata(secondaryTable.getAttributeAnnotation("foreignKey"), accessor);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.internal.jpa.metadata.columns.PrimaryKeyForeignKeyMetadata

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.