Search in sources :

Example 1 with NamedEntityGraphs

use of javax.persistence.NamedEntityGraphs in project hibernate-orm by hibernate.

the class EntityBinder method processNamedEntityGraphs.

private void processNamedEntityGraphs() {
    processNamedEntityGraph(annotatedClass.getAnnotation(NamedEntityGraph.class));
    final NamedEntityGraphs graphs = annotatedClass.getAnnotation(NamedEntityGraphs.class);
    if (graphs != null) {
        for (NamedEntityGraph graph : graphs.value()) {
            processNamedEntityGraph(graph);
        }
    }
}
Also used : NamedEntityGraphs(javax.persistence.NamedEntityGraphs) NamedEntityGraph(javax.persistence.NamedEntityGraph)

Example 2 with NamedEntityGraphs

use of javax.persistence.NamedEntityGraphs in project hibernate-orm by hibernate.

the class JPAOverriddenAnnotationReader method getNamedEntityGraphs.

private NamedEntityGraphs getNamedEntityGraphs(Element tree, XMLContext.Default defaults) {
    List<NamedEntityGraph> queries = buildNamedEntityGraph(tree, defaults, classLoaderAccess);
    if (defaults.canUseJavaAnnotations()) {
        NamedEntityGraph annotation = getPhysicalAnnotation(NamedEntityGraph.class);
        addNamedEntityGraphIfNeeded(annotation, queries);
        NamedEntityGraphs annotations = getPhysicalAnnotation(NamedEntityGraphs.class);
        if (annotations != null) {
            for (NamedEntityGraph current : annotations.value()) {
                addNamedEntityGraphIfNeeded(current, queries);
            }
        }
    }
    if (queries.size() > 0) {
        AnnotationDescriptor ad = new AnnotationDescriptor(NamedEntityGraphs.class);
        ad.setValue("value", queries.toArray(new NamedEntityGraph[queries.size()]));
        return AnnotationFactory.create(ad);
    } else {
        return null;
    }
}
Also used : AnnotationDescriptor(org.hibernate.annotations.common.annotationfactory.AnnotationDescriptor) NamedEntityGraphs(javax.persistence.NamedEntityGraphs) NamedEntityGraph(javax.persistence.NamedEntityGraph)

Aggregations

NamedEntityGraph (javax.persistence.NamedEntityGraph)2 NamedEntityGraphs (javax.persistence.NamedEntityGraphs)2 AnnotationDescriptor (org.hibernate.annotations.common.annotationfactory.AnnotationDescriptor)1