mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-03 06:38:56 +02: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);
|
|
}
|