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

Examples of org.eclipse.persistence.internal.jpa.metadata.mappings.BatchFetchMetadata


* @since EclipseLink 2.5.1
*/
public class BatchFetchImpl extends MetadataImpl<BatchFetchMetadata> implements BatchFetch {
   
    public BatchFetchImpl() {
        super(new BatchFetchMetadata());
    }
View Full Code Here


            m_joinFetch = getAnnotation(JoinFetch.class).getAttributeString("value");
        }
       
        // Set the batch fetch if one is present.
        if (isAnnotationPresent(BatchFetch.class)) {
            m_batchFetch = new BatchFetchMetadata(getAnnotation(BatchFetch.class), this);
        }
       
        // Set the cascade on delete if specified.
        m_cascadeOnDelete = isAnnotationPresent(CascadeOnDelete.class);
       
View Full Code Here

            m_joinFetch = getAnnotation(JoinFetch.class).getAttributeString("value");
        }
       
        // Set the batch fetch if one is present.
        if (isAnnotationPresent(BatchFetch.class)) {
            m_batchFetch = new BatchFetchMetadata(getAnnotation(BatchFetch.class), this);
        }
       
        // Set the join columns if some are present.
        // Process all the join columns first.
        if (isAnnotationPresent(JPA_JOIN_COLUMNS)) {
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.internal.jpa.metadata.mappings.BatchFetchMetadata

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.