Package javax.xml.rpc.encoding
Interface DeserializerFactory
-
- All Superinterfaces:
java.io.Serializable
public interface DeserializerFactory extends java.io.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.- Version:
- $Rev: 467553 $ $Date: 2006-10-25 00:01:51 -0400 (Wed, 25 Oct 2006) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Deserializer
getDeserializerAs(java.lang.String mechanismType)
Returns a Deserializer for the specified XML processing mechanism type.java.util.Iterator
getSupportedMechanismTypes()
Returns anIterator
over the list of all XML processing mechanism types supported by thisDeserializerFactory
.
-
-
-
Method Detail
-
getDeserializerAs
Deserializer getDeserializerAs(java.lang.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:
JAXRPCException
- if DeserializerFactory does not support the specified XML processing mechanism
-
getSupportedMechanismTypes
java.util.Iterator getSupportedMechanismTypes()
Returns anIterator
over the list of all XML processing mechanism types supported by thisDeserializerFactory
.- Returns:
- an
Iterator
over the unique identifiers for the supported XML processing mechanism types (asString
s?)
-
-