Package org.eclipse.persistence.mappings

Examples of org.eclipse.persistence.mappings.AggregateMapping


            collectionMapping.setShouldExtendPessimisticLockScope(true);
           
            // Set the cascade on delete if specified.
            collectionMapping.setIsCascadeOnDeleteSetOnDatabase(isCascadeOnDelete());
        } else if (mapping instanceof AggregateMapping) {
            AggregateMapping aggregateMapping = (AggregateMapping)mapping;

            // Set the reference class name.
            aggregateMapping.setReferenceClassName(getReferenceClassName());
        }
       
        // Set the non cacheable if specified.
        mapping.setIsCacheable(!isNonCacheable());
       
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.mappings.AggregateMapping

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.