Blame view

src/main/java/pl/itcrowd/youtrack/api/YoutrackUnmarshaller.java 626 Bytes
bernard authored
1
package pl.itcrowd.youtrack.api;
bernard authored
2
bernard authored
3
import pl.itcrowd.youtrack.api.rest.ObjectFactory;
bernard authored
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import java.io.Reader;
import java.io.StringReader;

public final class YoutrackUnmarshaller {

    public static Object unmarshall(String string) throws JAXBException
    {
        return unmarshall(new StringReader(string));
    }

    public static Object unmarshall(Reader reader) throws JAXBException
    {
        return JAXBContext.newInstance(ObjectFactory.class).createUnmarshaller().unmarshal(reader);
    }

    private YoutrackUnmarshaller()
    {
    }
}