javax.persistence.NamedNativeQueries Java Examples

The following examples show how to use javax.persistence.NamedNativeQueries. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JPAOverriddenAnnotationReader.java    From lams with GNU General Public License v2.0 6 votes vote down vote up
private NamedNativeQueries getNamedNativeQueries(
		Element tree,
		XMLContext.Default defaults) {
	List<NamedNativeQuery> queries = (List<NamedNativeQuery>) buildNamedQueries( tree, true, defaults, classLoaderAccess );
	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;
	}
}
 
Example #2
Source File: QueryBinder.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
public static void bindNativeQueries(
		NamedNativeQueries queriesAnn,
		MetadataBuildingContext context,
		boolean isDefault) {
	if ( queriesAnn == null ) {
		return;
	}

	for (NamedNativeQuery q : queriesAnn.value()) {
		bindNativeQuery( q, context, isDefault );
	}
}
 
Example #3
Source File: QueryBinder.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
public static void bindNativeQueries(
		org.hibernate.annotations.NamedNativeQueries queriesAnn,
		MetadataBuildingContext context) {
	if ( queriesAnn == null ) {
		return;
	}

	for (org.hibernate.annotations.NamedNativeQuery q : queriesAnn.value()) {
		bindNativeQuery( q, context );
	}
}
 
Example #4
Source File: CreateXAnnotations.java    From hyperjaxb3 with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public XAnnotation<?> createNamedNativeQuery(
		Collection<NamedNativeQuery> cNamedNativeQueries) {
	return transform(
			NamedNativeQueries.class,
			javax.persistence.NamedNativeQuery.class,
			cNamedNativeQueries,
			new Transformer<NamedNativeQuery, XAnnotation<javax.persistence.NamedNativeQuery>>() {
				public XAnnotation<javax.persistence.NamedNativeQuery> transform(
						NamedNativeQuery input) {
					return createNamedNativeQuery(input);
				}
			});
}