1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Copyright 2020 SURFnet B.V. |
4
|
|
|
* |
5
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
6
|
|
|
* you may not use this file except in compliance with the License. |
7
|
|
|
* You may obtain a copy of the License at |
8
|
|
|
* |
9
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
10
|
|
|
* |
11
|
|
|
* Unless required by applicable law or agreed to in writing, software |
12
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
13
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14
|
|
|
* See the License for the specific language governing permissions and |
15
|
|
|
* limitations under the License. |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
namespace Surfnet\StepupSelfService\SelfServiceBundle\Service\RemoteVetting\Value; |
19
|
|
|
|
20
|
|
|
use JsonSerializable; |
21
|
|
|
use Surfnet\StepupSelfService\SelfServiceBundle\Assert; |
22
|
|
|
|
23
|
|
|
class AttributeMatch implements JsonSerializable |
24
|
|
|
{ |
25
|
|
|
/** |
26
|
|
|
* @var bool |
27
|
|
|
*/ |
28
|
|
|
private $valid; |
29
|
|
|
/** |
30
|
|
|
* @var string |
31
|
|
|
*/ |
32
|
|
|
private $remarks = ''; |
33
|
|
|
/** |
34
|
|
|
* @var Attribute |
35
|
|
|
*/ |
36
|
|
|
private $localAttribute; |
37
|
|
|
/** |
38
|
|
|
* @var Attribute |
39
|
|
|
*/ |
40
|
|
|
private $remoteAttribute; |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @param Attribute $localAttribute |
44
|
|
|
* @param Attribute $remoteAttribute |
45
|
|
|
* @param bool $valid |
46
|
|
|
* @param string $remarks |
47
|
|
|
*/ |
48
|
|
|
public function __construct(Attribute $localAttribute, Attribute $remoteAttribute, $valid, $remarks) |
49
|
|
|
{ |
50
|
|
|
Assert::boolean($valid, 'valid should be boolean'); |
51
|
|
|
Assert::string($remarks, 'remarks should be string'); |
52
|
|
|
|
53
|
|
|
$this->localAttribute = $localAttribute; |
54
|
|
|
$this->remoteAttribute = $remoteAttribute; |
55
|
|
|
$this->valid = $valid; |
56
|
|
|
$this->remarks = $remarks; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @return bool |
61
|
|
|
*/ |
62
|
|
|
public function isValid() |
63
|
|
|
{ |
64
|
|
|
return $this->valid; |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* @return string |
69
|
|
|
*/ |
70
|
|
|
public function getRemarks() |
71
|
|
|
{ |
72
|
|
|
return $this->remarks; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* @return Attribute |
77
|
|
|
*/ |
78
|
|
|
public function getLocalAttribute() |
79
|
|
|
{ |
80
|
|
|
return $this->localAttribute; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
/** |
84
|
|
|
* @return Attribute |
85
|
|
|
*/ |
86
|
|
|
public function getRemoteAttribute() |
87
|
|
|
{ |
88
|
|
|
return $this->remoteAttribute; |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
public function jsonSerialize() |
92
|
|
|
{ |
93
|
|
|
return ['local' => $this->localAttribute, 'remote' => $this->remoteAttribute, 'is-valid' => $this->valid, 'remarks' => $this->remarks]; |
94
|
|
|
} |
95
|
|
|
} |
96
|
|
|
|