1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <?php
|
| namespace OSS\Model;
|
| /**
| * Interface XmlConfig
| * @package OSS\Model
| */
| interface XmlConfig
| {
|
| /**
| * Interface method: Parse the object from the xml.
| *
| * @param string $strXml
| * @return null
| */
| public function parseFromXml($strXml);
|
| /**
| * Interface method: Serialize the object into xml.
| *
| * @return string
| */
| public function serializeToXml();
|
| }
|
|