com.seleniumtests.connectors.tms.hpalm.EntityMarshallingUtils Maven / Gradle / Ivy
The newest version!
/**
* Orignal work: Copyright 2015 www.seleniumtests.com
* Modified work: Copyright 2016 www.infotel.com
* Copyright 2017-2019 B.Hecquet
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.seleniumtests.connectors.tms.hpalm;
import java.io.StringReader;
import java.io.StringWriter;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
/**
* A utility class for converting between JAXB annotated objects and XML.
*/
public class EntityMarshallingUtils {
private EntityMarshallingUtils() {
}
/**
* @param
* the type we want to convert the XML into
* @param c
* the class of the parameterized type
* @param xml
* the instance XML description
* @return a deserialization of the XML into an object of type T of class
* class
* @throws JAXBException
*/
@SuppressWarnings("unchecked")
public static T marshal(Class c, String xml) throws JAXBException {
T res;
if (c == xml.getClass()) {
res = (T) xml;
} else {
JAXBContext ctx = JAXBContext.newInstance(c);
Unmarshaller marshaller = ctx.createUnmarshaller();
res = (T) marshaller.unmarshal(new StringReader(xml));
}
return res;
}
/**
* @param
* the type to serialize
* @param c
* the class of the type to serialize
* @param o
* the instance containing the data to serialize
* @return a string representation of the data.
* @throws JAXBException
* @throws Exception
*/
public static String unmarshal(Class c, Object o) throws JAXBException {
JAXBContext ctx = JAXBContext.newInstance(c);
Marshaller marshaller = ctx.createMarshaller();
StringWriter entityXml = new StringWriter();
marshaller.marshal(o, entityXml);
return entityXml.toString();
}
}