|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.xml.bind.JAXBContext
com.sun.xml.bind.api.JAXBRIContext
com.sun.xml.bind.v2.runtime.JAXBContextImpl
public final class JAXBContextImpl
This class provides the implementation of JAXBContext.
Field Summary | |
---|---|
boolean |
allNillable
|
protected Map<RuntimeTypeInfo,JaxBeanInfo> |
beanInfos
All created JaxBeanInfo s. |
protected boolean |
c14nSupport
true to reorder attributes lexicographically in preparation of the c14n support. |
boolean |
fastBoot
If true, we aim for faster JAXBContext instanciation performance,
instead of going after efficient sustained unmarshalling/marshalling performance. |
com.sun.istack.Pool<Marshaller> |
marshallerPool
Pool of Marshaller s. |
NameBuilder |
nameBuilder
Used to assign indices to known names in this grammar. |
NameList |
nameList
Keeps the list of known names. |
com.sun.istack.Pool<Unmarshaller> |
unmarshallerPool
|
boolean |
xmlAccessorFactorySupport
Flag that user has provided a custom AccessorFactory for JAXB to use |
Fields inherited from class com.sun.xml.bind.api.JAXBRIContext |
---|
ANNOTATION_READER, CANONICALIZATION_SUPPORT, DEFAULT_NAMESPACE_REMAP, ENABLE_XOP, SUBCLASS_REPLACEMENTS, TREAT_EVERYTHING_NILLABLE, TYPE_REFERENCES, XMLACCESSORFACTORY_SUPPORT |
Fields inherited from class javax.xml.bind.JAXBContext |
---|
JAXB_CONTEXT_FACTORY |
Constructor Summary | |
---|---|
JAXBContextImpl(Class[] classes,
Collection<TypeReference> typeRefs,
Map<Class,Class> subclassReplacements,
String defaultNsUri,
boolean c14nSupport,
RuntimeAnnotationReader ar,
boolean xmlAccessorFactorySupport,
boolean allNillable)
|
Method Summary | ||
---|---|---|
JAXBContextImpl |
createAugmented(Class<?> clazz)
Creates a JAXBContextImpl that includes the specified additional classes. |
|
Binder<Node> |
createBinder()
|
|
|
createBinder(Class<T> domType)
|
|
Bridge |
createBridge(TypeReference ref)
Creates a mini-marshaller/unmarshaller that can process a TypeReference . |
|
BridgeContext |
createBridgeContext()
Creates a new BridgeContext instance. |
|
(package private) static Document |
createDom()
Creates a new DOM document. |
|
JAXBIntrospector |
createJAXBIntrospector()
|
|
MarshallerImpl |
createMarshaller()
|
|
SchemaOutputResolver |
createTestResolver()
Used for testing. |
|
(package private) static Transformer |
createTransformer()
Creates a new identity transformer. |
|
static TransformerHandler |
createTransformerHandler()
Creates a new identity transformer. |
|
UnmarshallerImpl |
createUnmarshaller()
|
|
Validator |
createValidator()
|
|
void |
generateEpisode(Result output)
Generates the episode file that represents the binding known to this JAXBContext ,
so that XJC can later do separate compilation. |
|
void |
generateSchema(SchemaOutputResolver outputResolver)
Generates the schema documents from the model. |
|
|
getBeanInfo(Class<T> clazz)
Gets the JaxBeanInfo object that can handle
the given JAXB-bound class. |
|
|
getBeanInfo(Class<T> clazz,
boolean fatal)
Gets the JaxBeanInfo object that can handle
the given JAXB-bound class. |
|
JaxBeanInfo |
getBeanInfo(Object o)
Gets the JaxBeanInfo object that can handle
the given JAXB-bound object. |
|
JaxBeanInfo |
getBeanInfo(Object o,
boolean fatal)
Gets the JaxBeanInfo object that can handle
the given JAXB-bound object. |
|
String |
getBuildId()
Gets the build information of the JAXB runtime. |
|
ElementBeanInfoImpl |
getElement(Class scope,
QName name)
|
|
QName |
getElementName(Object o)
If the given object is bound to an element in XML by JAXB, returns the element name. |
|
RawAccessor |
getElementPropertyAccessor(Class wrapperBean,
String nsUri,
String localName)
Gets a RawAccessor for the specified element property of the specified wrapper bean class. |
|
JaxBeanInfo |
getGlobalType(QName name)
Gets the JaxBeanInfo for the given named XML Schema type. |
|
List<String> |
getKnownNamespaceURIs()
Gets the namespace URIs statically known to this JAXBContext . |
|
String |
getNearestTypeName(QName name)
Finds a type name that this context recognizes which is "closest" to the given type name. |
|
int |
getNumberOfAttributeNames()
|
|
int |
getNumberOfElementNames()
|
|
int |
getNumberOfLocalNames()
|
|
protected JaxBeanInfo |
getOrCreate(RuntimeArrayInfo ai)
|
|
protected ClassBeanInfoImpl |
getOrCreate(RuntimeClassInfo ci)
|
|
protected JaxBeanInfo |
getOrCreate(RuntimeEnumLeafInfo eli)
|
|
JaxBeanInfo |
getOrCreate(RuntimeTypeInfo e)
|
|
RuntimeTypeInfoSet |
getTypeInfoSet()
Creates a RuntimeTypeInfoSet . |
|
QName |
getTypeName(TypeReference tr)
Returns the name of the XML Type bound to the specified Java type. |
|
Encoded[] |
getUTF8NameTable()
|
|
Set<QName> |
getValidRootNames()
Returns the set of valid root tag names. |
|
String |
getXMIMEContentType(Object o)
Gets the value of the xmime:contentType attribute on the given object, or null if for some reason it couldn't be found, including any error. |
|
boolean |
hasSwaRef()
True if this JAXBContext has XmlAttachmentRef . |
|
Loader |
selectRootLoader(UnmarshallingContext.State state,
TagName tag)
Based on the tag name, determine what object to unmarshal, and then set a new object and its loader to the current unmarshaller state. |
|
String |
toString()
|
Methods inherited from class com.sun.xml.bind.api.JAXBRIContext |
---|
getBaseType, mangleNameToClassName, mangleNameToPropertyName, mangleNameToVariableName, newInstance, newInstance |
Methods inherited from class javax.xml.bind.JAXBContext |
---|
newInstance, newInstance, newInstance, newInstance, newInstance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected Map<RuntimeTypeInfo,JaxBeanInfo> beanInfos
JaxBeanInfo
s.
Updated from each JaxBeanInfo
s constructors to avoid infinite recursion
for a cyclic reference.
This map is only used while the JAXBContextImpl
is built and set to null
to avoid keeping references too long.
public final com.sun.istack.Pool<Marshaller> marshallerPool
Marshaller
s.
public final com.sun.istack.Pool<Unmarshaller> unmarshallerPool
public NameBuilder nameBuilder
public final NameList nameList
protected final boolean c14nSupport
public final boolean xmlAccessorFactorySupport
public final boolean allNillable
JAXBRIContext.TREAT_EVERYTHING_NILLABLE
public final boolean fastBoot
JAXBContext
instanciation performance,
instead of going after efficient sustained unmarshalling/marshalling performance.
Constructor Detail |
---|
public JAXBContextImpl(Class[] classes, Collection<TypeReference> typeRefs, Map<Class,Class> subclassReplacements, String defaultNsUri, boolean c14nSupport, @Nullable RuntimeAnnotationReader ar, boolean xmlAccessorFactorySupport, boolean allNillable) throws JAXBException
typeRefs
- used to build Bridge
s. Can be empty.c14nSupport
- c14nSupport
.xmlAccessorFactorySupport
- Use custom com.sun.xml.bind.v2.runtime.reflect.Accessor implementation.
JAXBException
Method Detail |
---|
public boolean hasSwaRef()
XmlAttachmentRef
.
hasSwaRef
in class JAXBRIContext
public RuntimeTypeInfoSet getTypeInfoSet() throws IllegalAnnotationsException
RuntimeTypeInfoSet
.
IllegalAnnotationsException
public ElementBeanInfoImpl getElement(Class scope, QName name)
protected JaxBeanInfo getOrCreate(RuntimeEnumLeafInfo eli)
protected ClassBeanInfoImpl getOrCreate(RuntimeClassInfo ci)
protected JaxBeanInfo getOrCreate(RuntimeArrayInfo ai)
public JaxBeanInfo getOrCreate(RuntimeTypeInfo e)
public final JaxBeanInfo getBeanInfo(Object o)
JaxBeanInfo
object that can handle
the given JAXB-bound object.
This method traverses the base classes of the given object.
public final JaxBeanInfo getBeanInfo(Object o, boolean fatal) throws JAXBException
JaxBeanInfo
object that can handle
the given JAXB-bound object.
fatal
- if true, the failure to look up will throw an exception.
Otherwise it will just return null.
JAXBException
public final <T> JaxBeanInfo<T> getBeanInfo(Class<T> clazz)
JaxBeanInfo
object that can handle
the given JAXB-bound class.
This method doesn't look for base classes.
public final <T> JaxBeanInfo<T> getBeanInfo(Class<T> clazz, boolean fatal) throws JAXBException
JaxBeanInfo
object that can handle
the given JAXB-bound class.
fatal
- if true, the failure to look up will throw an exception.
Otherwise it will just return null.
JAXBException
public final Loader selectRootLoader(UnmarshallingContext.State state, TagName tag)
public JaxBeanInfo getGlobalType(QName name)
JaxBeanInfo
for the given named XML Schema type.
public String getNearestTypeName(QName name)
This method is used for error recovery.
public Set<QName> getValidRootNames()
public Encoded[] getUTF8NameTable()
public int getNumberOfLocalNames()
public int getNumberOfElementNames()
public int getNumberOfAttributeNames()
static Transformer createTransformer()
public static TransformerHandler createTransformerHandler()
static Document createDom()
public MarshallerImpl createMarshaller()
createMarshaller
in class JAXBContext
public UnmarshallerImpl createUnmarshaller()
createUnmarshaller
in class JAXBContext
public Validator createValidator()
createValidator
in class JAXBContext
public JAXBIntrospector createJAXBIntrospector()
createJAXBIntrospector
in class JAXBContext
public void generateEpisode(Result output)
JAXBRIContext
JAXBContext
,
so that XJC can later do separate compilation.
Episode file is really just a JAXB customization file, except that currently we use the RI-specific SCD to refer to schema components.
generateEpisode
in class JAXBRIContext
output
- This receives the generated episode file.public void generateSchema(SchemaOutputResolver outputResolver) throws IOException
JAXBRIContext
The caller can use the additionalElementDecls parameter to add element declarations to the generate schema. For example, if the JAX-RPC passes in the following entry: {foo}bar -> DeclaredType for java.lang.String then JAXB generates the following element declaration (in the schema document for the namespace "foo")" <xs:element name="bar" type="xs:string" /> This can be used for generating schema components necessary for WSDL.
generateSchema
in class JAXBRIContext
outputResolver
- this object controls the output to which schemas
will be sent.
IOException
- if SchemaOutputResolver
throws an IOException
.public QName getTypeName(TypeReference tr)
JAXBRIContext
getTypeName
in class JAXBRIContext
tr
- must not be null. This must be one of the TypeReference
s specified
in the JAXBRIContext.newInstance(java.lang.Class[], java.util.Collection, java.util.Map, java.lang.String, boolean, com.sun.xml.bind.v2.model.annotation.RuntimeAnnotationReader)
method.
public SchemaOutputResolver createTestResolver()
public <T> Binder<T> createBinder(Class<T> domType)
createBinder
in class JAXBContext
public Binder<Node> createBinder()
createBinder
in class JAXBContext
public QName getElementName(Object o) throws JAXBException
JAXBRIContext
getElementName
in class JAXBRIContext
JAXBException
- if the object is not known to this context.public Bridge createBridge(TypeReference ref)
JAXBRIContext
TypeReference
.
createBridge
in class JAXBRIContext
JAXBRIContext.newInstance(java.lang.Class[], java.util.Collection, java.util.Map, java.lang.String, boolean, com.sun.xml.bind.v2.model.annotation.RuntimeAnnotationReader)
.@NotNull public BridgeContext createBridgeContext()
JAXBRIContext
BridgeContext
instance.
createBridgeContext
in class JAXBRIContext
public RawAccessor getElementPropertyAccessor(Class wrapperBean, String nsUri, String localName) throws JAXBException
JAXBRIContext
RawAccessor
for the specified element property of the specified wrapper bean class.
This method is designed to assist the JAX-RPC RI fill in a wrapper bean (in the doc/lit/wrap mode.) In the said mode, a wrapper bean is supposed to only have properties that match elements, and for each element that appear in the content model there's one property.
Therefore, this method takes a wrapper bean and a tag name that identifies a property
on the given wrapper bean, then returns a RawAccessor
that allows the caller
to set/get a value from the property of the bean.
This method is not designed for a performance. The caller is expected to cache the result.
getElementPropertyAccessor
in class JAXBRIContext
JAXBException
- if the specified wrapper bean is not bound by JAXB, or if it doesn't have an element property
of the given name.public List<String> getKnownNamespaceURIs()
JAXBRIContext
JAXBContext
.
When JAXB is used to marshal into sub-trees, it declares these namespace URIs at each top-level element that it marshals. To avoid repeated namespace declarations at sub-elements, the application may declare those namespaces at a higher level.
getKnownNamespaceURIs
in class JAXBRIContext
public String getBuildId()
JAXBRIContext
getBuildId
in class JAXBRIContext
public String toString()
toString
in class Object
public String getXMIMEContentType(Object o)
public JAXBContextImpl createAugmented(Class<?> clazz) throws JAXBException
JAXBContextImpl
that includes the specified additional classes.
JAXBException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |