01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.config.schema.migrate;
05:
06: import org.apache.xmlbeans.XmlException;
07: import org.apache.xmlbeans.XmlOptions;
08:
09: import java.io.IOException;
10: import java.io.InputStream;
11:
12: public interface ConfigUpdate {
13:
14: InputStream convert(InputStream in, XmlOptions xmlOptions)
15: throws XmlException, IOException;
16:
17: XmlOptions createDefaultXmlOptions();
18: }
|