bernard
authored
|
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import java.io.Reader;
import java.io.StringReader;
public final class YoutrackUnmarshaller {
// -------------------------- STATIC METHODS --------------------------
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);
}
// --------------------------- CONSTRUCTORS ---------------------------
private YoutrackUnmarshaller()
{
}
}
|