diff --git a/modules/adfs/lib/SAML2/XML/fed/SecurityTokenServiceType.php b/modules/adfs/lib/SAML2/XML/fed/SecurityTokenServiceType.php index 10aa5e41eafa67d0eb164651ca14ce132c08e411..de386e9f65dc932d4c112dacc3bfa8e5a5389372 100644 --- a/modules/adfs/lib/SAML2/XML/fed/SecurityTokenServiceType.php +++ b/modules/adfs/lib/SAML2/XML/fed/SecurityTokenServiceType.php @@ -56,4 +56,26 @@ class SecurityTokenServiceType extends \SAML2\XML\md\RoleDescriptor return $e; } + + + /** + * Get the location of this service. + * + * @return string The full URL where this service can be reached. + */ + public function getLocation() + { + return $this->Location; + } + + + /** + * Set the location of this service. + * + * @param string $location The full URL where this service can be reached. + */ + public function setLocation($location) + { + $this->Location = $location; + } }