javax.xml.rpc.encoding

Interface DeserializerFactory

public interface DeserializerFactory extends Serializable

The javax.xml.rpc.encoding.DeserializerFactory is a factory of deserializers. A DeserializerFactory is registered with a TypeMapping instance as part of the TypeMappingRegistry.
Method Summary
DeserializergetDeserializerAs(String mechanismType)
Returns a Deserializer for the specified XML processing mechanism type.
IteratorgetSupportedMechanismTypes()
Returns an Iterator over the list of all XML processing mechanism types supported by this DeserializerFactory.

Method Detail

getDeserializerAs

public Deserializer getDeserializerAs(String mechanismType)
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: javax.xml.rpc.JAXRPCException if DeserializerFactory does not support the specified XML processing mechanism

getSupportedMechanismTypes

public Iterator getSupportedMechanismTypes()
Returns an Iterator over the list of all XML processing mechanism types supported by this DeserializerFactory.

Returns: an Iterator over the unique identifiers for the supported XML processing mechanism types (as Strings?)