![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/litesaml/lightsaml/src/Model/Metadata/ |
<?php namespace LightSaml\Model\Metadata; use LightSaml\Model\AbstractSamlModel; use LightSaml\Model\Context\DeserializationContext; use LightSaml\Model\Context\SerializationContext; abstract class Endpoint extends AbstractSamlModel { /** @var string */ protected $binding; /** @var string */ protected $location; /** @var string|null */ protected $responseLocation; /** * @param string $location * @param string $binding */ public function __construct($location = null, $binding = null) { $this->location = $location; $this->binding = $binding; } /** * @param string $binding * * @return Endpoint */ public function setBinding($binding) { $this->binding = (string) $binding; return $this; } /** * @return string */ public function getBinding() { return $this->binding; } /** * @param string $location * * @return Endpoint */ public function setLocation($location) { $this->location = (string) $location; return $this; } /** * @return string */ public function getLocation() { return $this->location; } /** * @param string|null $responseLocation * * @return Endpoint */ public function setResponseLocation($responseLocation) { $this->responseLocation = $responseLocation ? (string) $responseLocation : null; return $this; } /** * @return string|null */ public function getResponseLocation() { return $this->responseLocation; } public function serialize(\DOMNode $parent, SerializationContext $context) { $this->attributesToXml(['Binding', 'Location', 'ResponseLocation'], $parent); } public function deserialize(\DOMNode $node, DeserializationContext $context) { $this->attributesFromXml($node, ['Binding', 'Location', 'ResponseLocation']); } }