* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 * @author Icinga Development Team * */ // {{{ICINGA_LICENSE_HEADER}}}} namespace Icinga\Authentication; /** * Api behaviour for a group backend * * @TODO(mh): Groups not implemented at present, re-implement if needed (#4624) */ interface GroupBackend { /** * Name of the backend * * @return string */ public function getName(); }