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