public function SAML2_Assertion::setId in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7
Set the identifier of this assertion.
Parameters
string $id The new identifier of this assertion.:
File
- includes/
Assertion.php, line 415
Class
Code
public function setId($id) {
assert('is_string($id)');
$this->id = $id;
}