Package org.jboss.marshalling
Interface MarshallerFactory
- All Known Implementing Classes:
AbstractMarshallerFactory
,RiverMarshallerFactory
,SerialMarshallerFactory
public interface MarshallerFactory
The main marshaller factory.
-
Method Summary
Modifier and TypeMethodDescriptioncreateMarshaller
(MarshallingConfiguration configuration) Create a marshaller from this configuration.createUnmarshaller
(MarshallingConfiguration configuration) Create an unmarshaller from this configuration.
-
Method Details
-
createUnmarshaller
Create an unmarshaller from this configuration.- Parameters:
configuration
- the marshalling configuration to use- Returns:
- an unmarshaller
- Throws:
IOException
- if an error occurs
-
createMarshaller
Create a marshaller from this configuration.- Parameters:
configuration
- the marshalling configuration to use- Returns:
- a marshaller
- Throws:
IOException
- if an error occurs
-