Incorporated an XMLRPC Library

Original Source http://code.google.com/p/android-xmlrpc/

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-08-27 12:40:37 -04:00
parent 6ead4f6750
commit 8a6205cef0
11 changed files with 1129 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package org.xmlrpc.android;
/**
* Allows to pass any XMLRPCSerializable object as input parameter.
* When implementing getSerializable() you should return
* one of XMLRPC primitive types (or another XMLRPCSerializable: be careful not going into
* recursion by passing this object reference!)
*/
public interface XMLRPCSerializable {
/**
* Gets XMLRPC serialization object
* @return object to serialize This object is most likely one of XMLRPC primitive types,
* however you can return also another XMLRPCSerializable
*/
Object getSerializable();
}