mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-11-01 19:54:16 +01:00
26 lines
399 B
PHP
Executable File
26 lines
399 B
PHP
Executable File
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Protocol\Statusdat;
|
|
|
|
interface IReader
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getState();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getObjects();
|
|
|
|
/**
|
|
* @param $type
|
|
* @param $name
|
|
* @return mixed
|
|
*/
|
|
public function getObjectByName($type, $name);
|
|
}
|