| 1 | <?php |
||
| 11 | class ArtifactResponse extends StatusResponse |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The \DOMElement with the message the artifact refers |
||
| 15 | * to, or null if we don't refer to any artifact. |
||
| 16 | * |
||
| 17 | * @var \DOMElement|null |
||
| 18 | */ |
||
| 19 | private $any; |
||
| 20 | |||
| 21 | |||
| 22 | public function __construct(\DOMElement $xml = null) |
||
| 41 | |||
| 42 | public function setAny(\DOMElement $any = null) |
||
| 46 | |||
| 47 | public function getAny() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Convert the response message to an XML element. |
||
| 54 | * |
||
| 55 | * @return \DOMElement This response. |
||
| 56 | */ |
||
| 57 | public function toUnsignedXML() |
||
| 67 | } |
||
| 68 |