package org.opentrafficsim.base;
/**
* Interface for all identifiable objects.
*
* Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 26 jun. 2017
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
*/
public interface Identifiable
{
/**
* Retrieve the id of the object.
* @return String; the id of the object
*/
String getId();
}