All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.tsl2.nano.replication.serializer.SerializeSimpleXml Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
package de.tsl2.nano.replication.serializer;

import java.io.ByteArrayOutputStream;
import java.io.InputStream;

import org.simpleframework.xml.core.Persister;


public class SerializeSimpleXml implements Serializer {
    public static final String KEY = "SIMPLE_XML";
    @Override
    public String getKey() {
        return KEY;
    }
    @Override
    public String getExtension() {
        return "simple.xml";
    }
    @Override
    public ByteArrayOutputStream serialize(Object obj) {
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        try {
            new Persister().write(obj, out);
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
        return out;
    }
    @Override
    public  T deserialize(InputStream stream, Class type) {
        try {
			return new Persister().read(type, stream);
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
    }
    
    /**
     * convenient to be used as Consumer (e.g.: SerializeSimpleXml::serializer)
     * @param obj
     */
    public static void serializer(Object obj) {
    	new SerializeSimpleXml().serialize(obj);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy