Package de.timroes.axmlrpc.serializer

Source Code of de.timroes.axmlrpc.serializer.NullSerializer

package de.timroes.axmlrpc.serializer;

import de.timroes.axmlrpc.XMLRPCException;
import de.timroes.axmlrpc.xmlcreator.XmlElement;
import org.w3c.dom.Element;

/**
*
* @author Tim Roes
*/
public class NullSerializer implements Serializer {

  public Object deserialize(Element content) throws XMLRPCException {
    return null;
  }

  public XmlElement serialize(Object object) {
    return new XmlElement(SerializerHandler.TYPE_NULL);
  }

}
TOP

Related Classes of de.timroes.axmlrpc.serializer.NullSerializer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.