blob: a6764194739fbbffc5a62b4c186d87e18aec5996 [file] [log] [blame]
package org.eclipse.jst.jsf.common.internal.policy;
/**
* An object with an unique identity
* @author cbateman
* @param <IDTYPE>
*
*/
public interface IIdentifiable<IDTYPE>
{
/**
* @return the unique identifier
*/
IDTYPE getId();
}