panda.bind.xmlrpc.XmlRpcs Maven / Gradle / Ivy
package panda.bind.xmlrpc;
import java.io.InputStream;
import java.io.Reader;
import java.lang.reflect.Type;
import panda.io.Streams;
/**
*
*
*/
public abstract class XmlRpcs {
public static T fromXml(String xml, Type type) {
XmlRpcDeserializer xd = new XmlRpcDeserializer();
return xd.deserialize(xml, type);
}
public static T fromXml(Reader xml, Type type) {
XmlRpcDeserializer xd = new XmlRpcDeserializer();
return xd.deserialize(xml, type);
}
public static T fromXml(InputStream xml, String encoding, Type type) {
Reader r = Streams.toReader(xml, encoding);
XmlRpcDeserializer xd = new XmlRpcDeserializer();
return xd.deserialize(r, type);
}
public static XmlRpcSerializer newXmlSerializer() {
XmlRpcSerializer xs = new XmlRpcSerializer();
return xs;
}
public static String toXml(Object value, boolean call) {
return toXml(value, call, false);
}
public static String toXml(Object value, boolean isMethodCall, boolean pretty) {
XmlRpcSerializer xs = newXmlSerializer();
xs.setMethodCall(isMethodCall);
xs.setPrettyPrint(pretty);
return xs.serialize(value);
}
public static String toXml(Object value, boolean isMethodCall, int indent) {
XmlRpcSerializer xs = newXmlSerializer();
xs.setMethodCall(isMethodCall);
xs.setIndentFactor(indent);
return xs.serialize(value);
}
public static void toXml(Object value, Appendable writer) {
XmlRpcSerializer xs = newXmlSerializer();
xs.serialize(value, writer);
}
public static void toXml(Object value, Appendable writer, boolean isMethodCall) {
XmlRpcSerializer xs = newXmlSerializer();
xs.setMethodCall(isMethodCall);
xs.serialize(value, writer);
}
public static void toXml(Object value, Appendable writer, boolean isMethodCall, boolean pretty) {
XmlRpcSerializer xs = newXmlSerializer();
xs.setMethodCall(isMethodCall);
xs.setPrettyPrint(pretty);
xs.serialize(value, writer);
}
public static void toXml(Object value, Appendable writer, boolean isMethodCall, int indent) {
XmlRpcSerializer xs = newXmlSerializer();
xs.setMethodCall(isMethodCall);
xs.setIndentFactor(indent);
xs.serialize(value, writer);
}
}