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:
17
OSJ Forum/src/org/xmlrpc/android/XMLRPCSerializable.java
Normal file
17
OSJ Forum/src/org/xmlrpc/android/XMLRPCSerializable.java
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user