getAuthenticationEntryPoint() public method

Returns the configured authentication entry point, NULL if none is available
public getAuthenticationEntryPoint ( ) : Neos\Flow\Security\Authentication\EntryPointInterface
return Neos\Flow\Security\Authentication\EntryPointInterface The configured authentication entry point, NULL if none is available
 /**
  * @test
  */
 public function authenticationEntryPointCanBeSetAndRetrieved()
 {
     $entryPoint = new WebRedirect();
     $this->token->setAuthenticationEntryPoint($entryPoint);
     $this->assertSame($entryPoint, $this->token->getAuthenticationEntryPoint());
 }