ca.gc.aafc.dina.service.PredicateBasedReadOnlyDinaService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-base-api Show documentation
Show all versions of dina-base-api Show documentation
Base DINA API package for Java built on SpringBoot and Crnk
package ca.gc.aafc.dina.service;
import java.util.List;
import java.util.function.Predicate;
/**
* Service layer to provide read-only access using {@link Predicate}.
*/
public interface PredicateBasedReadOnlyDinaService {
T findOne(K key);
List findAll(Predicate predicate, Integer pageOffset, Integer pageLimit);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy