ILIAS  release_8 Revision v8.24
interface.ilAuthCredentials.php
Go to the documentation of this file.
1<?php
2
19declare(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.
getUsername()
Get username.
getAuthMode()
Get auth mode.
setPassword(string $a_password)
Set password.
getPassword()
Get password.
setAuthMode(string $a_auth_mode)
Set auth mode.
setUsername(string $a_name)
Set username.