| 1 | <?php |
||
| 8 | abstract class NameIDType extends BaseID |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * A URI reference representing the classification of string-based identifier information. |
||
| 12 | * |
||
| 13 | * @var string|null |
||
| 14 | */ |
||
| 15 | private $format; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * A A name identifier established by a service provider or affiliation of providers for the entity. |
||
| 19 | * |
||
| 20 | * @var string|null |
||
| 21 | */ |
||
| 22 | private $spProvidedID; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Retrieve the name identifier established by a service provider or affiliation of providers for the entity. |
||
| 26 | * |
||
| 27 | * @return string name identifier established by a service provider or affiliation of providers for the entity |
||
| 28 | */ |
||
| 29 | public function getSPProvidedID() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Set the name identifier established by a service provider or affiliation of providers for the entity. |
||
| 36 | * |
||
| 37 | * @param string $spProvidedID name identifier established by a service provider or affiliation of providers for the entity |
||
| 38 | */ |
||
| 39 | public function setSPProvidedID($spProvidedID) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Retrieve the format. |
||
| 48 | * |
||
| 49 | * @return string format |
||
| 50 | */ |
||
| 51 | public function getFormat() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Set the format. |
||
| 58 | * |
||
| 59 | * @param string $format format for the entity |
||
| 60 | */ |
||
| 61 | public function setFormat($format) |
||
| 67 | } |
||
| 68 |