package uk.ac.lkl.common.util; /** * This is an interface for objects that have IDs that are publicly accessible * */ public interface ObjectWithID { public ID getId(); }