ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
interface.ilAuthCredentials.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
32  public function setUsername(string $a_name): void;
33 
37  public function getUsername(): string;
38 
42  public function setPassword(string $a_password): void;
43 
47  public function getPassword(): string;
48 
54  public function setAuthMode(string $a_auth_mode): void;
55 
59  public function getAuthMode(): string;
60 }
Interface of auth credentials.
setPassword(string $a_password)
Set password.
getUsername()
Get username.
setUsername(string $a_name)
Set username.
getPassword()
Get password.
getAuthMode()
Get auth mode.
setAuthMode(string $a_auth_mode)
Set auth mode.