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

com.jdroid.javaweb.guava.predicate.IdPredicate Maven / Gradle / Ivy

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);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy