com.jdroid.javaweb.guava.function.IdPropertyFunction 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.function;
import com.google.common.base.Function;
import com.jdroid.java.domain.Identifiable;
/**
* A Function implementation that extracts the ID of an {@link Identifiable} object
*/
public class IdPropertyFunction implements Function {
/**
* @see com.jdroid.javaweb.guava.function.PropertyFunction#apply(java.lang.Object)
*/
@Override
public String apply(Identifiable from) {
return from.getId();
}
}