com.jdroid.javaweb.guava.predicate.IdPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-webapp Show documentation
Show all versions of jdroid-java-webapp Show documentation
Jdroid library for Java Web apps
The newest version!
package com.jdroid.javaweb.guava.predicate;
import com.jdroid.java.domain.Identifiable;
/**
* Predicate that match an entity with the id
*
* @param The entity type
*/
public class IdPredicate extends EqualsPropertyPredicate {
/**
* @param entityId The entity id
*/
public IdPredicate(Long entityId) {
super("id", entityId);
}
}