io.crnk.jpa.query.ComputedAttributeRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crnk-jpa Show documentation
Show all versions of crnk-jpa Show documentation
JSON API framework for Java
package io.crnk.jpa.query;
import java.util.Set;
/**
* Holds the computed attributes registered to a JpaQueryFactory.
*/
public interface ComputedAttributeRegistry {
/**
* @param entityType for whom to get the computed attributes.
* @return list of computed attribute names for the given entity type
*/
Set getForType(Class> entityType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy