ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilECSAuth Class Reference
+ Inheritance diagram for ilECSAuth:
+ Collaboration diagram for ilECSAuth:

Public Member Functions

 __construct ()
 
 setPid (int $a_pid)
 
 getPid ()
 
 setUrl (string $a_url)
 
 getUrl ()
 
 setRealm (string $a_realm)
 
 getRealm ()
 
 jsonSerialize ()
 

Protected Attributes

ilLogger $log
 
array $mids = array()
 

Private Attributes

string $realm = ''
 
string $url = ''
 
int $pid = null
 

Detailed Description

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 23 of file class.ilECSAuth.php.

Constructor & Destructor Documentation

◆ __construct()

ilECSAuth::__construct ( )

Definition at line 32 of file class.ilECSAuth.php.

References $DIC.

33  {
34  global $DIC;
35 
36  $this->log = $DIC->logger()->wsrv();
37  }
global $DIC
Definition: feed.php:28

Member Function Documentation

◆ getPid()

ilECSAuth::getPid ( )

Definition at line 44 of file class.ilECSAuth.php.

References $pid.

44  : int
45  {
46  return $this->pid;
47  }

◆ getRealm()

ilECSAuth::getRealm ( )

Definition at line 64 of file class.ilECSAuth.php.

References $realm.

64  : string
65  {
66  return $this->realm;
67  }

◆ getUrl()

ilECSAuth::getUrl ( )

Definition at line 54 of file class.ilECSAuth.php.

References $url.

54  : string
55  {
56  return $this->url;
57  }

◆ jsonSerialize()

ilECSAuth::jsonSerialize ( )

Definition at line 69 of file class.ilECSAuth.php.

References $realm.

70  {
71  return [
72  "realm" => $this->realm
73  ];
74  }

◆ setPid()

ilECSAuth::setPid ( int  $a_pid)

Definition at line 39 of file class.ilECSAuth.php.

39  : void
40  {
41  $this->pid = $a_pid;
42  }

◆ setRealm()

ilECSAuth::setRealm ( string  $a_realm)

Definition at line 59 of file class.ilECSAuth.php.

59  : void
60  {
61  $this->realm = $a_realm;
62  }

◆ setUrl()

ilECSAuth::setUrl ( string  $a_url)

Definition at line 49 of file class.ilECSAuth.php.

49  : void
50  {
51  $this->url = $a_url;
52  }

Field Documentation

◆ $log

ilLogger ilECSAuth::$log
protected

Definition at line 25 of file class.ilECSAuth.php.

◆ $mids

array ilECSAuth::$mids = array()
protected

Definition at line 26 of file class.ilECSAuth.php.

◆ $pid

int ilECSAuth::$pid = null
private

Definition at line 30 of file class.ilECSAuth.php.

Referenced by getPid().

◆ $realm

string ilECSAuth::$realm = ''
private

Definition at line 28 of file class.ilECSAuth.php.

Referenced by getRealm(), and jsonSerialize().

◆ $url

string ilECSAuth::$url = ''
private

Definition at line 29 of file class.ilECSAuth.php.

Referenced by getUrl().


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