Class Digest

Summary

Fully Qualified Name: Zend\Authentication\Adapter\Digest
Extends: AbstractAdapter

Description

Methods

Name Description Defined By
__construct() Sets adapter options Digest
authenticate() Defined by Zend\Authentication\Adapter\AdapterInterface Digest
getCredential() Returns the credential of the account being authenticated, or NULL if none is set. AbstractAdapter
getFilename() Returns the filename option value or null if it has not yet been set Digest
getIdentity() Returns the identity of the account being authenticated, or NULL if none is set. AbstractAdapter
getPassword() Returns the password option value or null if it has not yet been set Digest
getRealm() Returns the realm option value or null if it has not yet been set Digest
getUsername() Returns the username option value or null if it has not yet been set Digest
setCredential() Sets the credential for binding AbstractAdapter
setFilename() Sets the filename option value Digest
setIdentity() Sets the identity for binding AbstractAdapter
setPassword() Sets the password option value Digest
setRealm() Sets the realm option value Digest
setUsername() Sets the username option value Digest

Method Details

__construct()

Sets adapter options

Parameter Name Type Description
$filename mixed
$realm mixed
$identity mixed
$credential mixed

Returns:

authenticate()

Defined by Zend\Authentication\Adapter\AdapterInterface

Returns: \AuthenticationResult

getCredential()

Returns the credential of the account being authenticated, or NULL if none is set.

Returns: mixed

getFilename()

Returns the filename option value or null if it has not yet been set

Returns: string|null

getIdentity()

Returns the identity of the account being authenticated, or NULL if none is set.

Returns: mixed

getPassword()

Returns the password option value or null if it has not yet been set

Returns: string|null

getRealm()

Returns the realm option value or null if it has not yet been set

Returns: string|null

getUsername()

Returns the username option value or null if it has not yet been set

Returns: string|null

setCredential()

Sets the credential for binding

Parameter Name Type Description
$credential mixed

Returns: self Provides a fluent interface

setFilename()

Sets the filename option value

Parameter Name Type Description
$filename mixed

Returns: self Provides a fluent interface

setIdentity()

Sets the identity for binding

Parameter Name Type Description
$identity mixed

Returns: self Provides a fluent interface

setPassword()

Sets the password option value

Parameter Name Type Description
$password mixed

Returns: self Provides a fluent interface

setRealm()

Sets the realm option value

Parameter Name Type Description
$realm mixed

Returns: self Provides a fluent interface

setUsername()

Sets the username option value

Parameter Name Type Description
$username mixed

Returns: self Provides a fluent interface

Top