javax.xml.rpc.encoding
Interface DeserializerFactory
- All Superinterfaces:
- java.io.Serializable
- All Known Subinterfaces:
- DeserializerFactory
- 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:
- 0.6
Method Summary |
Deserializer |
getDeserializerAs(java.lang.String mechanismType)
Returns a Deserializer for the specified XML processing mechanism type. |
java.util.Iterator |
getSupportedMechanismTypes()
Returns a list of all XML processing mechanism types supported by this DeserializerFactory. |
getDeserializerAs
public Deserializer getDeserializerAs(java.lang.String mechanismType)
throws JAXRPCException
- Returns a Deserializer for the specified XML processing mechanism type.
- Parameters:
mechanismType
- - XML processing mechanism type [TBD: definition of valid constants]- Returns:
- Returns a Deserializer for the specified XML processing mechanism type.
- Throws:
JAXRPCException
- - If DeserializerFactory does not support
the specified XML processing mechanism
java.lang.IllegalArgumentException - If an invalid mechanism type is specified.
getSupportedMechanismTypes
public java.util.Iterator getSupportedMechanismTypes()
- Returns a list of all XML processing mechanism types supported by this DeserializerFactory.
- Returns:
- List of unique identifiers for the supported XML processing mechanism types
Copyright © 2001 Apache XML Project. All Rights Reserved.