Package com.sun.xml.ws.developer
Interface JAXBContextFactory
-
public interface JAXBContextFactoryFactory to createJAXBContext.JAX-WS uses JAXB to perform databinding when you use the service endpoint interface, and normally the JAX-WS RI drives JAXB and creates a necessary
JAXBContextautomatically.This annotation is a JAX-WS RI vendor-specific feature, which lets applications create
JAXBRIContext(which is the JAXB RI'sJAXBContextimplementation.) Combined with the JAXB RI vendor extensions defined inJAXBRIContext, appliation can use this to fine-tune how the databinding happens, such as by adding more classes to the binding context, by controlling the namespace mappings, and so on.Applications should either use
UsesJAXBContextFeatureorUsesJAXBContextto instruct the JAX-WS runtime to use a custom factory.- Since:
- 2.1.5
- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description static JAXBContextFactoryDEFAULTThe default implementation that createsJAXBRIContextaccording to the standard behavior.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JAXBRIContextcreateJAXBContext(SEIModel sei, List<Class> classesToBind, List<TypeReference> typeReferences)Called by the JAX-WS runtime to create aJAXBRIContextfor the given SEI.
-
-
-
Field Detail
-
DEFAULT
static final JAXBContextFactory DEFAULT
The default implementation that createsJAXBRIContextaccording to the standard behavior.
-
-
Method Detail
-
createJAXBContext
@NotNull JAXBRIContext createJAXBContext(@NotNull SEIModel sei, @NotNull List<Class> classesToBind, @NotNull List<TypeReference> typeReferences) throws javax.xml.bind.JAXBException
Called by the JAX-WS runtime to create aJAXBRIContextfor the given SEI.- Parameters:
sei- TheSEIModelobject being constructed. This object provides you access to what SEI is being processed, and therefore useful if you are writing a genericJAXBContextFactorythat can work with arbitrary SEI classes.classesToBind- List of classes that needs to be bound by JAXB. This value is computed according to the JAX-WS spec and given to you. The calling JAX-WS runtime expects the returnedJAXBRIContextto be capable of handling all these classes, but you can add more (which is more common), or remove some (if you know what you are doing.) The callee is free to mutate this list.typeReferences- List ofTypeReferences, which is also a part of the input to the JAXB RI to control how the databinding happens. Most likely this will be just a pass-through to theJAXBRIContext.newInstance(java.lang.Class[], java.util.Collection<com.sun.xml.bind.api.TypeReference>, java.util.Map<java.lang.Class, java.lang.Class>, java.lang.String, boolean, com.sun.xml.bind.v2.model.annotation.RuntimeAnnotationReader)method.- Returns:
- A non-null valid
JAXBRIContextobject. - Throws:
javax.xml.bind.JAXBException- If the callee encounters a fatal problem and wants to abort the JAX-WS runtime processing of the given SEI, throw aJAXBException. This will cause the port instantiation to fail (if on client), or the application deployment to fail (if on server.)
-
-