| 1 | <?php |
||
| 20 | class Identity |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string $type Type |
||
| 24 | */ |
||
| 25 | private $type; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string $endpoint Endpoint |
||
| 29 | */ |
||
| 30 | private $endpoint; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get type. |
||
| 34 | * |
||
| 35 | * @return string Type |
||
| 36 | */ |
||
| 37 | public function getType() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Set type. |
||
| 44 | * |
||
| 45 | * @param string $type type |
||
| 46 | * |
||
| 47 | * @return $this |
||
| 48 | */ |
||
| 49 | public function setType($type) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Get endpoint. |
||
| 58 | * |
||
| 59 | * @return string Endpoint |
||
| 60 | */ |
||
| 61 | public function getEndpoint() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Set endpoint. |
||
| 68 | * |
||
| 69 | * @param string $endpoint endpoint |
||
| 70 | * |
||
| 71 | * @return $this |
||
| 72 | */ |
||
| 73 | public function setEndpoint($endpoint) |
||
| 79 | } |
||
| 80 |