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