PHP Interface Neos\Flow\Security\Authentication\EntryPointInterface

Afficher le fichier Open project: neos/flow-development-collection

Méthodes publiques

Méthode Description
getOptions ( ) : array Returns the options array
setOptions ( array $options ) : void Sets the options array
startAuthentication ( Request $request, Response $response ) : void Starts the authentication. (e.g. redirect to login page or send 401 HTTP header)

Method Details

getOptions() public méthode

Returns the options array
public getOptions ( ) : array
Résultat array An array of configuration options

setOptions() public méthode

Sets the options array
public setOptions ( array $options ) : void
$options array An array of configuration options
Résultat void

startAuthentication() public méthode

Starts the authentication. (e.g. redirect to login page or send 401 HTTP header)
public startAuthentication ( Request $request, Response $response ) : void
$request Neos\Flow\Http\Request The current request
$response Neos\Flow\Http\Response The current response
Résultat void