Package javax.xml.rpc.encoding
Interface DeserializerFactory
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
DeserializerFactory
- All Known Implementing Classes:
ArrayDeserializerFactory,Base64DeserializerFactory,BaseDeserializerFactory,BeanDeserializerFactory,CalendarDeserializerFactory,CastorDeserializerFactory,CastorEnumTypeDeserializerFactory,DateDeserializerFactory,DocumentDeserializerFactory,ElementDeserializerFactory,EnumDeserializerFactory,HexDeserializerFactory,JAFDataHandlerDeserializerFactory,MapDeserializerFactory,QNameDeserializerFactory,SimpleDeserializerFactory,SimpleListDeserializerFactory,TimeDeserializerFactory,VectorDeserializerFactory,XmlBeanDeserializerFactory
The javax.xml.rpc.encoding.DeserializerFactory is a factory of
deserializers. A DeserializerFactory is registered with a
TypeMapping instance as part of the TypeMappingRegistry.
- Version:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptiongetDeserializerAs(String mechanismType) Returns a Deserializer for the specified XML processing mechanism type.Returns anIteratorover the list of all XML processing mechanism types supported by thisDeserializerFactory.
-
Method Details
-
getDeserializerAs
Returns a Deserializer for the specified XML processing mechanism type.- Parameters:
mechanismType- XML processing mechanism type [TBD: definition of valid constants]- Returns:
- a Deserializer for the specified XML processing mechanism type
- Throws:
JAXRPCException- if DeserializerFactory does not support the specified XML processing mechanism
-
getSupportedMechanismTypes
Iterator getSupportedMechanismTypes()Returns anIteratorover the list of all XML processing mechanism types supported by thisDeserializerFactory.- Returns:
- an
Iteratorover the unique identifiers for the supported XML processing mechanism types (asStrings?)
-