org.jboss.resteasy.plugins.providers.jaxb.JAXBElementProvider Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.providers.jaxb;
import org.jboss.resteasy.util.NoContent;
import org.jboss.resteasy.util.Types;
import org.xml.sax.InputSource;
import javax.ws.rs.Consumes;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.ext.Provider;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.stream.StreamSource;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
/**
*
* A JAXB Provider which handles parameter and return types of {@link JAXBElement}. This provider will be
* selected when the resource is declared as:
*
*
* @POST
* @Consumes("applictaion/xml")
* @Produces("applictaion/xml")
* public JAXBElement<Contact> getContact(JAXBElement<Contact> value);
*
*
* @author Ryan J. McDonough
* @version $Revision:$
*/
@Provider
@Produces({"application/*+xml", "text/*+xml"})
@Consumes({"application/*+xml", "text/*+xml"})
public class JAXBElementProvider extends AbstractJAXBProvider>
{
@Override
protected boolean isReadWritable(Class> type,
Type genericType,
Annotation[] annotations,
MediaType mediaType)
{
return JAXBElement.class.equals(type);
}
/**
*
*/
public JAXBElement> readFrom(Class> type,
Type genericType,
Annotation[] annotations,
MediaType mediaType,
MultivaluedMap httpHeaders,
InputStream entityStream) throws IOException
{
NoContent.contentLengthCheck(httpHeaders);
Class> typeArg = Object.class;
if (genericType != null) typeArg = Types.getTypeArgument(genericType);
JAXBContext jaxb = null;
try
{
jaxb = findJAXBContext(typeArg, annotations, mediaType, true);
}
catch (JAXBException e)
{
throw new JAXBUnmarshalException(e);
}
JAXBElement> result;
try
{
Unmarshaller unmarshaller = jaxb.createUnmarshaller();
unmarshaller = decorateUnmarshaller(type, annotations, mediaType, unmarshaller);
if (needsSecurity())
{
unmarshaller = new SecureUnmarshaller(unmarshaller, isDisableExternalEntities(), isEnableSecureProcessingFeature(), isDisableDTDs());
SAXSource source = null;
if (getCharset(mediaType) == null)
{
source = new SAXSource(new InputSource(new InputStreamReader(entityStream, "UTF-8")));
}
else
{
source = new SAXSource(new InputSource(entityStream));
}
result = unmarshaller.unmarshal(source, (Class>) typeArg);
}
else
{
if (getCharset(mediaType) == null)
{
InputSource is = new InputSource(entityStream);
is.setEncoding("UTF-8");
StreamSource source = new StreamSource(new InputStreamReader(entityStream, "UTF-8"));
source.setInputStream(entityStream);
result = unmarshaller.unmarshal(source, (Class>) typeArg);
}
else
{
JAXBElement> e = unmarshaller.unmarshal(new StreamSource(entityStream), (Class>) typeArg);
result = e;
}
};
}
catch (JAXBException e)
{
throw new JAXBUnmarshalException(e);
}
JAXBElement> element = result;
return element;
}
@Override
public void writeTo(JAXBElement> t,
Class> type,
Type genericType,
Annotation[] annotations,
MediaType mediaType,
MultivaluedMap httpHeaders,
OutputStream outputStream) throws IOException
{
Class> typeArg = Object.class;
if (genericType != null) typeArg = Types.getTypeArgument(genericType);
super.writeTo(t, typeArg, genericType, annotations, mediaType, httpHeaders, outputStream);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy