2014-07-28 19:05:37 +02:00
|
|
|
<?php
|
2015-02-03 16:16:10 +01:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2014-07-28 19:05:37 +02:00
|
|
|
|
|
|
|
namespace Icinga\Data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for objects that are identifiable by an ID of any type
|
|
|
|
*/
|
|
|
|
interface Identifiable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the ID associated with this Identifiable object
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getId();
|
|
|
|
}
|