added initial support for incoming mtom/xop message handling

This commit is contained in:
Christian Kerl
2010-10-08 16:58:14 +02:00
parent 8d3743d928
commit 4ed8d6813a
3 changed files with 151 additions and 4 deletions

32
Soap/SoapAttachment.php Normal file
View File

@ -0,0 +1,32 @@
<?php
namespace Bundle\WebServiceBundle\Soap;
class SoapAttachment
{
private $id;
private $type;
private $content;
public function __construct($id, $type, $content)
{
$this->id = $id;
$this->type = $type;
$this->content = $content;
}
public function getId()
{
return $this->id;
}
public function getType()
{
return $this->type;
}
public function getContent()
{
return $this->content;
}
}