Class XmlJAXBContextFinder
java.lang.Object
org.jboss.resteasy.plugins.providers.jaxb.AbstractJAXBContextFinder
org.jboss.resteasy.plugins.providers.jaxb.XmlJAXBContextFinder
- All Implemented Interfaces:
ContextResolver<JAXBContextFinder>,JAXBContextFinder
@Provider
@Produces({"text/xml","text/*+xml","application/xml","application/*+xml"})
public class XmlJAXBContextFinder
extends AbstractJAXBContextFinder
implements ContextResolver<JAXBContextFinder>
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Nested Class Summary
Nested classes/interfaces inherited from class org.jboss.resteasy.plugins.providers.jaxb.AbstractJAXBContextFinder
AbstractJAXBContextFinder.CacheKey -
Field Summary
Fields inherited from class org.jboss.resteasy.plugins.providers.jaxb.AbstractJAXBContextFinder
OBJECT_FACTORY_NAME, providers -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected JAXBContextcreateContextObject(Annotation[] parameterAnnotations, Class... classes) protected JAXBContextcreateContextObject(Annotation[] parameterAnnotations, String contextPath) findCacheContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes) This method creates a JAXBContext from a collection of classes.findCachedContext(Class type, MediaType mediaType, Annotation[] parameterAnnotations) This method with find a JAXBContext for one type.findCacheXmlTypeContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes) This method will find a JAXBContext from a set of XmlTypes that use an ObjectFactory for creation (i.e. from xjc).Methods inherited from class org.jboss.resteasy.plugins.providers.jaxb.AbstractJAXBContextFinder
createContext, createXmlTypeContext, findDefaultObjectFactoryClass, findProvidedJAXBContext, getContext, getPackageNameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface jakarta.ws.rs.ext.ContextResolver
getContext
-
Constructor Details
-
XmlJAXBContextFinder
public XmlJAXBContextFinder()
-
-
Method Details
-
findCachedContext
public JAXBContext findCachedContext(Class type, MediaType mediaType, Annotation[] parameterAnnotations) throws JAXBException Description copied from interface:JAXBContextFinderThis method with find a JAXBContext for one type. The user can override the cache by defining a ContextResolver<JAXBContext> for the given media type.- Specified by:
findCachedContextin interfaceJAXBContextFinder- Parameters:
type- typemediaType- media typeparameterAnnotations- annotations- Returns:
JAXBContext- Throws:
JAXBException- jaxb exception
-
createContextObject
protected JAXBContext createContextObject(Annotation[] parameterAnnotations, Class... classes) throws JAXBException - Specified by:
createContextObjectin classAbstractJAXBContextFinder- Throws:
JAXBException
-
createContextObject
protected JAXBContext createContextObject(Annotation[] parameterAnnotations, String contextPath) throws JAXBException - Specified by:
createContextObjectin classAbstractJAXBContextFinder- Throws:
JAXBException
-
findCacheContext
public JAXBContext findCacheContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes) throws JAXBException Description copied from interface:JAXBContextFinderThis method creates a JAXBContext from a collection of classes. Unlike the other findCachedContext() method, the user cannot override the JAXBContext created.- Specified by:
findCacheContextin interfaceJAXBContextFinder- Parameters:
mediaType- media typeparaAnnotations- annotationsclasses- classes- Returns:
JAXBContext- Throws:
JAXBException- jaxb exception
-
findCacheXmlTypeContext
public JAXBContext findCacheXmlTypeContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes) throws JAXBException Description copied from interface:JAXBContextFinderThis method will find a JAXBContext from a set of XmlTypes that use an ObjectFactory for creation (i.e. from xjc).- Specified by:
findCacheXmlTypeContextin interfaceJAXBContextFinder- Parameters:
mediaType- media typeparaAnnotations- annotationsclasses- classes- Returns:
JAXBContext- Throws:
JAXBException- jaxb exception
-