PHP Interface Neos\Flow\Security\Authentication\EntryPointInterface

Mostra file Open project: neos/flow-development-collection

Public Methods

Method 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 method

Returns the options array
public getOptions ( ) : array
return array An array of configuration options

setOptions() public method

Sets the options array
public setOptions ( array $options ) : void
$options array An array of configuration options
return void

startAuthentication() public method

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
return void