Package oracle.toplink.essentials.descriptors

Examples of oracle.toplink.essentials.descriptors.FetchGroupManager


            mapping = session.getDescriptor(object.getClass()).getObjectBuilder().getMappingForAttributeName(getName());
        }

        //fetch group support
        if (mapping.getDescriptor().hasFetchGroupManager()) {
            FetchGroupManager fetchGroupMgr = mapping.getDescriptor().getFetchGroupManager();
            if (fetchGroupMgr.isPartialObject(object) && (!fetchGroupMgr.isAttributeFetched(object, mapping.getAttributeName()))) {
                //the conforming attribute is not fetched, simply throw exception
                throw QueryException.cannotConformUnfetchedAttribute(mapping.getAttributeName());
            }
        }
View Full Code Here

TOP

Related Classes of oracle.toplink.essentials.descriptors.FetchGroupManager

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.