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

org.exparity.data.xml.XmlMarshaller Maven / Gradle / Ivy

The newest version!
/*
 *
 */

package org.exparity.data.xml;

import org.exparity.data.BadFormatException;
import org.exparity.data.XML;

/**
 * @author Stewart Bissett
 */
public interface XmlMarshaller {

    public T unmarshal(final XML xml) throws BadFormatException, MarshallFailedException;

    public XML marshall(final T raw) throws MarshallFailedException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy