Package com.thoughtworks.xstream.tools.benchmark.reflection.products

Source Code of com.thoughtworks.xstream.tools.benchmark.reflection.products.XStreamPlain

/*
* Copyright (C) 2007, 2009 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 26. June 2007 by Joerg Schaible
*/
package com.thoughtworks.xstream.tools.benchmark.reflection.products;

import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.XppDriver;
import com.thoughtworks.xstream.tools.benchmark.Product;

import java.io.InputStream;
import java.io.OutputStream;

/**
* Uses XStream with the XPP driver for parsing XML and no additional setup.
*
* @author Joe Walnes
* @see com.thoughtworks.xstream.tools.benchmark.Harness
* @see Product
* @see XStream
* @see XppDriver
*/
public class XStreamPlain implements Product {

    private final XStream xstream;

    public XStreamPlain() {
        this.xstream = new XStream(new XppDriver());
    }

    public void serialize(Object object, OutputStream output) throws Exception {
        xstream.toXML(object, output);
    }

    public Object deserialize(InputStream input) throws Exception {
        return xstream.fromXML(input);
    }

    public String toString() {
        return "XStream (plain)";
    }

}
TOP

Related Classes of com.thoughtworks.xstream.tools.benchmark.reflection.products.XStreamPlain

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.