|
Oracle Fusion Middleware Java API Reference for Oracle WebLogic Server 12c (12.1.2) Part Number E27170-01 |
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES All Classes |
See:
Description
Interface Summary | |
---|---|
ClassContext | An identifier used to distinguish one use of a class from another. |
CustomSchema | The interface CustomSchema allows a programmatic way
to provide a custom schema for a given Java type. |
DeserializationContext | The state information passed to each invocation of deserialize. |
Deserializer | A Deserialzer is responsible for taking an xml instance of some Schema Type and creating and populating a corresponding Java Object. |
Holder | Adds a generic set/get pair of methods to the JAX-RPC Holder interface. |
SchemaContext | An identifier used to distinguish one use of a Schema construct from another. |
SerializationContext | The state information passed to each invocation of serialize. |
Serializer | A Serialzer is responsible for taking a java Object and writing a xml instance of some Schema Type. |
TypeMapping | A Collection of TypeMappingEntry objects. |
TypeMappingEntry | A TypeMappingEntry represents a complete, bi-directional mapping between a Schema Type and a Java class. |
Class Summary | |
---|---|
EncodingStyle | Represents an encoding style. |
SerializationPhase | typesafe enum for possible serialization states |
Exception Summary | |
---|---|
DeserializationException | A DeserializationException is thrown if an error
occurs during deserializtion. |
SerializationException | A SerializationException is thrown if an error occurs
during serializtion. |
Provides a framework for defining a data binding between XML Schema types and Java types.
TypeMappingBuilderFactory bf = new TypeMappingBuilderFactory();
TypeMappingBuilder builder = bf.createTypeMappingBuilder();
builder.addMapping(com.acme.Contract.class);
builder.addMapping(com.acme.Account.class);
builder.writeGeneratedSchemas( xmlWriter );
TypeMapping mapping = builder.getTypeMapping();
|
Copyright 1996, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Java API Reference for Oracle WebLogic Server 12c (12.1.2) Part Number E27170-01 |
|||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES All Classes |