mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-08-15 14:58:11 +02:00
20 lines
369 B
PHP
20 lines
369 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\DirectorObject\Automation;
|
|
|
|
use Icinga\Module\Director\Db;
|
|
|
|
interface ExportInterface
|
|
{
|
|
/**
|
|
* @return \stdClass
|
|
*/
|
|
public function export();
|
|
|
|
public static function import($plain, Db $db, $replace = false);
|
|
|
|
// TODO:
|
|
// public function getXyzChecksum();
|
|
public function getUniqueIdentifier();
|
|
}
|