public function SAML2_Assertion::setAttributeNameFormat in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7
Set the NameFormat used on all attributes.
Parameters
string $nameFormat The NameFormat used on all attributes.:
File
- includes/
Assertion.php, line 968
Class
Code
public function setAttributeNameFormat($nameFormat) {
assert('is_string($nameFormat)');
$this->nameFormat = $nameFormat;
}