Package org.eclipse.persistence.internal.jpa.config.tables

Examples of org.eclipse.persistence.internal.jpa.config.tables.SecondaryTableImpl


        getMetadata().getPrimaryKeyJoinColumns().add(primaryKeyJoinColumn.getMetadata());
        return primaryKeyJoinColumn;
    }

    public SecondaryTable addSecondaryTable() {
        SecondaryTableImpl secondaryTable = new SecondaryTableImpl();
        getMetadata().getSecondaryTables().add(secondaryTable.getMetadata());
        return secondaryTable;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.internal.jpa.config.tables.SecondaryTableImpl

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.