Class AegisElementProvider<T>
- java.lang.Object
-
- org.apache.cxf.jaxrs.provider.aegis.AbstractAegisProvider<T>
-
- org.apache.cxf.jaxrs.provider.aegis.AegisElementProvider<T>
-
- All Implemented Interfaces:
javax.ws.rs.ext.MessageBodyReader<T>,javax.ws.rs.ext.MessageBodyWriter<T>
@Provider @Produces({"application/xml","application/*+xml","text/xml"}) @Consumes({"application/xml","application/*+xml","text/xml"}) public class AegisElementProvider<T> extends AbstractAegisProvider<T>
-
-
Field Summary
-
Fields inherited from class org.apache.cxf.jaxrs.provider.aegis.AbstractAegisProvider
readXsiType, resolver, writeXsiType
-
-
Constructor Summary
Constructors Constructor Description AegisElementProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected XMLStreamReadercreateStreamReader(AegisType topType, InputStream is)protected XMLStreamWritercreateStreamWriter(QName typeQName, String enc, OutputStream os)TreadFrom(Class<T> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType m, javax.ws.rs.core.MultivaluedMap<String,String> headers, InputStream is)voidwriteTo(T obj, Class<?> type, Type genericType, Annotation[] anns, javax.ws.rs.core.MediaType m, javax.ws.rs.core.MultivaluedMap<String,Object> headers, OutputStream os)-
Methods inherited from class org.apache.cxf.jaxrs.provider.aegis.AbstractAegisProvider
getAegisContext, getSize, isReadable, isSupported, isWriteable, setReadXsiType, setWriteXsiType
-
-
-
-
Method Detail
-
readFrom
public T readFrom(Class<T> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType m, javax.ws.rs.core.MultivaluedMap<String,String> headers, InputStream is) throws IOException
- Throws:
IOException
-
createStreamReader
protected XMLStreamReader createStreamReader(AegisType topType, InputStream is) throws Exception
- Throws:
Exception
-
writeTo
public void writeTo(T obj, Class<?> type, Type genericType, Annotation[] anns, javax.ws.rs.core.MediaType m, javax.ws.rs.core.MultivaluedMap<String,Object> headers, OutputStream os) throws IOException
- Throws:
IOException
-
createStreamWriter
protected XMLStreamWriter createStreamWriter(QName typeQName, String enc, OutputStream os) throws Exception
- Throws:
Exception
-
-