Renamed generic type from PK to ID.

This commit is contained in:
Oliver Gierke
2011-02-09 16:35:17 +01:00
parent a832cd1e47
commit f36dd1e459

View File

@@ -27,9 +27,9 @@ import org.joda.time.DateTime;
*
* @author Oliver Gierke
* @param <U> the auditing type. Typically some kind of user.
* @param <PK> the type of the auditing type's idenifier
* @param <ID> the type of the auditing type's idenifier
*/
public interface Auditable<U, PK extends Serializable> extends Persistable<PK> {
public interface Auditable<U, ID extends Serializable> extends Persistable<ID> {
/**
* Returns the user who created this entity.