summaryrefslogtreecommitdiffstats
path: root/library/Director/DirectorObject/Automation/ExportInterface.php
blob: 275dfed92cf8fe49b441fdc4f9c98fdbddf64e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Icinga\Module\Director\DirectorObject\Automation;

use Icinga\Module\Director\Db;

interface ExportInterface
{
    /**
     * @deprecated
     * @return \stdClass
     */
    public function export();

    public static function import($plain, Db $db, $replace = false);

    // TODO:
    // public function getXyzChecksum();
    public function getUniqueIdentifier();
}