1 | <?php |
||
8 | abstract class SSOState implements \Serializable |
||
9 | { |
||
10 | /** @var string */ |
||
11 | protected $providerID; |
||
12 | |||
13 | /** @var string */ |
||
14 | protected $authenticationServiceName; |
||
15 | |||
16 | /** @var string */ |
||
17 | protected $sessionIndex; |
||
18 | |||
19 | /** @var string */ |
||
20 | protected $nameID; |
||
21 | |||
22 | /** @var string */ |
||
23 | protected $nameIDFormat; |
||
24 | |||
25 | /** @var \DateTime */ |
||
26 | protected $createdOn; |
||
27 | |||
28 | /** |
||
29 | * @param string $providerID |
||
30 | * |
||
31 | * @return SSOState |
||
32 | */ |
||
33 | public function setProviderID($providerID) |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getProviderID() |
||
47 | |||
48 | /** |
||
49 | * @param string $authenticationServiceName |
||
50 | * |
||
51 | * @return SSOState |
||
52 | */ |
||
53 | public function setAuthenticationServiceName($authenticationServiceName) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getAuthenticationServiceName() |
||
67 | |||
68 | /** |
||
69 | * @param string $nameID |
||
70 | * |
||
71 | * @return SSOState |
||
72 | */ |
||
73 | public function setNameID($nameID) |
||
79 | |||
80 | /** |
||
81 | * @return string |
||
82 | */ |
||
83 | public function getNameID() |
||
87 | |||
88 | /** |
||
89 | * @param string $nameIDFormat |
||
90 | * |
||
91 | * @return SSOState |
||
92 | */ |
||
93 | public function setNameIDFormat($nameIDFormat) |
||
99 | |||
100 | /** |
||
101 | * @return string |
||
102 | */ |
||
103 | public function getNameIDFormat() |
||
107 | |||
108 | /** |
||
109 | * @param string $sessionIndex |
||
110 | * |
||
111 | * @return SSOState |
||
112 | */ |
||
113 | public function setSessionIndex($sessionIndex) |
||
119 | |||
120 | /** |
||
121 | * @return string |
||
122 | */ |
||
123 | public function getSessionIndex() |
||
127 | |||
128 | /** |
||
129 | * @return \DateTime |
||
130 | */ |
||
131 | public function getCreatedOn() |
||
135 | |||
136 | /** |
||
137 | * @param \DateTime $createdOn |
||
138 | * |
||
139 | * @return SSOState |
||
140 | */ |
||
141 | public function setCreatedOn(\DateTime $createdOn) |
||
147 | |||
148 | /** |
||
149 | * (PHP 5 >= 5.1.0)<br/> |
||
150 | * String representation of object |
||
151 | * @link http://php.net/manual/en/serializable.serialize.php |
||
152 | * @return string the string representation of the object or null |
||
153 | */ |
||
154 | public function serialize() |
||
167 | |||
168 | /** |
||
169 | * (PHP 5 >= 5.1.0)<br/> |
||
170 | * Constructs the object |
||
171 | * @link http://php.net/manual/en/serializable.unserialize.php |
||
172 | * @param string $serialized <p> |
||
173 | * The string representation of the object. |
||
174 | * </p> |
||
175 | * @return void |
||
176 | */ |
||
177 | public function unserialize($serialized) |
||
194 | } |
||
195 |