aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/XMLRPCResponse.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/classes/XMLRPCResponse.php')
-rw-r--r--engine/classes/XMLRPCResponse.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/engine/classes/XMLRPCResponse.php b/engine/classes/XMLRPCResponse.php
new file mode 100644
index 000000000..1dea8d682
--- /dev/null
+++ b/engine/classes/XMLRPCResponse.php
@@ -0,0 +1,29 @@
+<?php
+
+/**
+ * @class XMLRPCResponse XML-RPC Response.
+ * @author Curverider Ltd
+ */
+abstract class XMLRPCResponse
+{
+ /** An array of parameters */
+ protected $parameters = array();
+
+ /**
+ * Add a parameter here.
+ *
+ * @param XMLRPCParameter $param The parameter.
+ */
+ public function addParameter(XMLRPCParameter $param)
+ {
+ if (!is_array($this->parameters))
+ $this->parameters = array();
+
+ $this->parameters[] = $param;
+ }
+
+ public function addInt($value) { $this->addParameter(new XMLRPCIntParameter($value)); }
+ public function addString($value) { $this->addParameter(new XMLRPCStringParameter($value)); }
+ public function addDouble($value) { $this->addParameter(new XMLRPCDoubleParameter($value)); }
+ public function addBoolean($value) { $this->addParameter(new XMLRPCBoolParameter($value)); }
+} \ No newline at end of file