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

com.lindar.wellrested.xml.WellRestedXMLUtil Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version
package com.lindar.wellrested.xml;

import java.io.StringReader;
import java.io.StringWriter;
import javax.xml.bind.JAXB;
import lombok.extern.slf4j.Slf4j;

@Slf4j
public class WellRestedXMLUtil {

    public static  String fromObjectToString(T xmlObject) {
        StringWriter sw = new StringWriter();
        JAXB.marshal(xmlObject, sw);
        return sw.toString();
    }

    public static  T fromStringToObject(String xmlString, Class xmlObjClass) {
        return JAXB.unmarshal(new StringReader(xmlString), xmlObjClass);
    }

    private WellRestedXMLUtil() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy