use of jakarta.persistence.NamedNativeQueries in project hibernate-orm by hibernate.
the class JPAXMLOverriddenAnnotationReader method getNamedNativeQueries.
private NamedNativeQueries getNamedNativeQueries(ManagedType root, XMLContext.Default defaults) {
List<NamedNativeQuery> queries = root instanceof JaxbEntity ? buildNamedNativeQueries(((JaxbEntity) root).getNamedNativeQuery(), defaults, classLoaderAccess) : new ArrayList<>();
if (defaults.canUseJavaAnnotations()) {
NamedNativeQuery annotation = getPhysicalAnnotation(NamedNativeQuery.class);
addNamedNativeQueryIfNeeded(annotation, queries);
NamedNativeQueries annotations = getPhysicalAnnotation(NamedNativeQueries.class);
if (annotations != null) {
for (NamedNativeQuery current : annotations.value()) {
addNamedNativeQueryIfNeeded(current, queries);
}
}
}
if (queries.size() > 0) {
AnnotationDescriptor ad = new AnnotationDescriptor(NamedNativeQueries.class);
ad.setValue("value", queries.toArray(new NamedNativeQuery[queries.size()]));
return AnnotationFactory.create(ad);
} else {
return null;
}
}
Aggregations