Skip to content

Commit

Permalink
DATACMNS-1293 - Polishing.
Browse files Browse the repository at this point in the history
Fix leftovers pointing to legacy Querydsl packages in Javadoc. Reformat code.

Original pull request: #284.
  • Loading branch information
mp911de committed Apr 12, 2018
1 parent 1f60389 commit f4070ce
Showing 1 changed file with 8 additions and 8 deletions.
Expand Up @@ -21,9 +21,9 @@
import java.lang.annotation.Target;

/**
* Annotation to customize the binding of HTTP request parameters to a Querydsl {@link com.mysema.query.types.Predicate}
* in Spring MVC handler methods.
*
* Annotation to customize the binding of HTTP request parameters to a Querydsl
* {@link com.querydsl.core.types.Predicate} in Spring MVC handler methods.
*
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.11
Expand All @@ -33,21 +33,21 @@
public @interface QuerydslPredicate {

/**
* The root type to create the {@link com.mysema.query.types.Predicate}. Specify this explicitly if the type is not
* The root type to create the {@link com.querydsl.core.types.Predicate}. Specify this explicitly if the type is not
* contained in the controller method's return type.
*
*
* @return
*/
Class<?>root() default Object.class;
Class<?> root() default Object.class;

/**
* To customize the way individual properties' values should be bound to the predicate a
* {@link QuerydslBinderCustomizer} can be specified here. We'll try to obtain a Spring bean of this type but fall
* back to a plain instantiation if no bean is found in the current
* {@link org.springframework.beans.factory.BeanFactory}.
*
*
* @return
*/
@SuppressWarnings("rawtypes")
Class<? extends QuerydslBinderCustomizer>bindings() default QuerydslBinderCustomizer.class;
Class<? extends QuerydslBinderCustomizer> bindings() default QuerydslBinderCustomizer.class;
}

0 comments on commit f4070ce

Please sign in to comment.