ACC SHELL

Path : /srv/www/vhosts/centrumlb/3rdparty/Nette/Security/
File Upload :
Current File : /srv/www/vhosts/centrumlb/3rdparty/Nette/Security/IAuthenticator.php

<?php

/**
 * This file is part of the Nette Framework (http://nette.org)
 * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 * @package Nette\Security
 */



/**
 * Performs authentication.
 *
 * @author     David Grudl
 * @package Nette\Security
 */
interface IAuthenticator
{
	/** Credential key */
	const USERNAME = 0,
		PASSWORD = 1;

	/** Exception error code */
	const IDENTITY_NOT_FOUND = 1,
		INVALID_CREDENTIAL = 2,
		FAILURE = 3,
		NOT_APPROVED = 4;

	/**
	 * Performs an authentication against e.g. database.
	 * and returns IIdentity on success or throws NAuthenticationException
	 * @return IIdentity
	 * @throws NAuthenticationException
	 */
	function authenticate(array $credentials);

}

ACC SHELL 2018