ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ILIAS\Data\Password Class Reference

A password is used as part of credentials for authentication. More...

+ Collaboration diagram for ILIAS\Data\Password:

Public Member Functions

 __construct (string $pass)
 
 toString ()
 

Private Attributes

string $pass
 

Detailed Description

A password is used as part of credentials for authentication.

This is a quite specific kind of data - worth to be protected and not to be confused by mistake.

Author
Nils Haagen nils..nosp@m.haag.nosp@m.en@co.nosp@m.ncep.nosp@m.ts-an.nosp@m.d-tr.nosp@m.ainin.nosp@m.g.de

Definition at line 30 of file Password.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Data\Password::__construct ( string  $pass)

Definition at line 34 of file Password.php.

References ILIAS\Data\Password\$pass.

35  {
36  $this->pass = $pass;
37  }

Member Function Documentation

◆ toString()

ILIAS\Data\Password::toString ( )

Definition at line 39 of file Password.php.

References ILIAS\Data\Password\$pass.

Referenced by ILIAS\Test\Presentation\TestScreenGUI\getModalLauncherInputs(), and ilLocalUserPasswordSettingsGUI\getPasswordForm().

39  : string
40  {
41  return $this->pass;
42  }
+ Here is the caller graph for this function:

Field Documentation

◆ $pass

string ILIAS\Data\Password::$pass
private

Definition at line 32 of file Password.php.

Referenced by ILIAS\Data\Password\__construct(), and ILIAS\Data\Password\toString().


The documentation for this class was generated from the following file: