Skip to content
Snippets Groups Projects
Unverified Commit c09b344f authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Add setter & getter for the Location property of...

Add setter & getter for the Location property of SimpleSAML\Module\adfs\SAML2\XML\fed\SecurityTokenServiceType.

The SAMLBuilder was using a setter, but none was in place.
parent ee525db4
No related branches found
No related tags found
No related merge requests found
...@@ -56,4 +56,26 @@ class SecurityTokenServiceType extends \SAML2\XML\md\RoleDescriptor ...@@ -56,4 +56,26 @@ class SecurityTokenServiceType extends \SAML2\XML\md\RoleDescriptor
return $e; 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;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment