mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-05 13:04:27 +02:00
21 lines
327 B
PHP
21 lines
327 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Protocol\Statusdat;
|
|
|
|
interface IReader
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getState();
|
|
|
|
/**
|
|
* @param $type
|
|
* @param $name
|
|
* @return mixed
|
|
*/
|
|
public function getObjectByName($type, $name);
|
|
}
|