cz.encircled.joiner.core.AliasResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joiner-core Show documentation
Show all versions of joiner-core Show documentation
Joiner is a Java library which allows to create type-safe JPA queries.
package cz.encircled.joiner.core;
import com.querydsl.core.types.EntityPath;
import cz.encircled.joiner.query.join.JoinDescription;
/**
* Implementation is responsible for aliases lookup in a query
*
* @author Vlad on 16-Aug-16.
*/
public interface AliasResolver {
/**
* Find and set the path to field (collection or single) for the given join
*
* @param join
* @param root
*/
void resolveFieldPathForJoinAlias(JoinDescription join, EntityPath> root);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy