ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
UnknownRoleDescriptor.php
Go to the documentation of this file.
1 <?php
2 
3 namespace SAML2\XML\md;
4 
6 
13 {
19  private $xml;
20 
26  public function __construct(\DOMElement $xml)
27  {
28  parent::__construct('md:RoleDescriptor', $xml);
29 
30  $this->xml = new Chunk($xml);
31  }
32 
39  public function toXML(\DOMElement $parent)
40  {
41  $this->xml->toXML($parent);
42  }
43 }
toXML(\DOMElement $parent)
Add this RoleDescriptor to an EntityDescriptor.
__construct(\DOMElement $xml)
Initialize an unknown RoleDescriptor.