org.activiti.engine.impl.persistence.SingleCachedEntityMatcher Maven / Gradle / Ivy
package org.activiti.engine.impl.persistence;
import org.activiti.engine.impl.persistence.entity.Entity;
/**
* Interface to express a condition whether or not one specific cached entity should be used in the return result of a query.
*
*/
public interface SingleCachedEntityMatcher {
boolean isRetained(EntityImpl entity, Object param);
}