001package systems.dmx.core; 002 003 004 005/** 006 * A common interface for all entities that provide an ID. 007 */ 008public interface Identifiable { 009 010 long getId(); 011}