001 package com.hammurapi.util;
002
003 /**
004 * Something with identity.
005 * @author Pavel Vlasov
006 *
007 * @param <I>
008 */
009 public interface Identifiable<I> {
010
011 I getIdentity();
012 }