All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.gc.aafc.dina.service.PredicateBasedReadOnlyDinaService Maven / Gradle / Ivy

There is a newer version: 0.132
Show newest version
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