Package org.smooks
Interface SmooksFactory
-
public interface SmooksFactoryA factory that createsSmooksinstances.- Author:
- Daniel Bevenius
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SmookscreateInstance()Creates a Smooks instance that is unconfiguredSmookscreateInstance(InputStream config)Creates a Smooks instance that is unconfiguredSmookscreateInstance(String config)Creates a Smooks instance that is unconfigured
-
-
-
Method Detail
-
createInstance
Smooks createInstance()
Creates a Smooks instance that is unconfigured- Returns:
- Smooks a new Smooks instance that is unconfigured.
-
createInstance
Smooks createInstance(InputStream config) throws IOException, SAXException
Creates a Smooks instance that is unconfigured- Parameters:
config- the Smooks configuration to add to the created Smooks instance.- Returns:
- Smooks a new Smooks instance that is configured with the passed in config.
- Throws:
IOExceptionSAXException
-
createInstance
Smooks createInstance(String config) throws IOException, SAXException
Creates a Smooks instance that is unconfigured- Parameters:
config- the Smooks configuration to add to the created Smooks instance.- Returns:
- Smooks a new Smooks instance that is configured with the passed in config.
- Throws:
IOExceptionSAXException
-
-