
[smarcet] - #5037 - Authentication Integration with OpenID custom Idp Change-Id: Ifb704254fa7274b169eb858a2596c9e5651ac76e
20 lines
372 B
PHP
20 lines
372 B
PHP
<?php
|
|
|
|
namespace auth;
|
|
|
|
/**
|
|
* Interface IAuthenticationExtensionService
|
|
* @package auth
|
|
*/
|
|
interface IAuthenticationExtensionService {
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getExtensions();
|
|
|
|
/**
|
|
* @param IAuthenticationExtension $extension
|
|
* @return bool
|
|
*/
|
|
public function addExtension(IAuthenticationExtension $extension);
|
|
}
|