1 | <?php |
||
27 | final class AccessControlServerResponse implements ObjectInitializedInterface { |
||
28 | /** |
||
29 | * @var string URL where a user should be redirected with the secure3dParameters |
||
30 | */ |
||
31 | private $url = ''; |
||
32 | |||
33 | /** |
||
34 | * @var AccessControlServerParametersResponse parameters that should be passed to secure3dUrlas-is using the |
||
35 | * HTTP POST method |
||
36 | */ |
||
37 | private $parameters = null; |
||
38 | |||
39 | /** |
||
40 | * @return string URL where a user should be redirected with the secure3dParameters |
||
41 | */ |
||
42 | 1 | public function getUrl() { |
|
45 | |||
46 | /** |
||
47 | * @return AccessControlServerParametersResponse parameters that should be passed to secure3dUrlas-is using the HTTP POST method |
||
48 | */ |
||
49 | 1 | public function getParameters() { |
|
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | * @return AccessControlServerResponse instance with ACS data |
||
56 | */ |
||
57 | 1 | public static function initializeByObject(stdClass $Object) { |
|
63 | |||
64 | /** |
||
65 | * @inheritdoc |
||
66 | */ |
||
67 | 1 | public function __toString() { |
|
83 | } |
||
84 |