Package org.smooks.api.profile
Interface ProfileConfigDigester
-
public interface ProfileConfigDigester
Stream based profile configuration digester interface. Construct a ProfileStore from an input stream. Most likely this stream would be of an XML format but this is implementation dependent - could be a serialised ProfileStore stream with the digester performing the deserialisation. Implementations must provide a default/empty constructor.- Author:
- tfennelly
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProfileStore
parse(InputStream input)
Parse the device profile configuration stream.
-
-
-
Method Detail
-
parse
ProfileStore parse(InputStream input) throws SAXException, IOException
Parse the device profile configuration stream.- Parameters:
input
- The input stream instance.- Returns:
- ProfileStore instance.
- Throws:
SAXException
IOException
-
-