1 5 package com.tc.config.schema.migrate; 6 7 import org.apache.xmlbeans.XmlException; 8 import org.apache.xmlbeans.XmlOptions; 9 10 import java.io.IOException ; 11 import java.io.InputStream ; 12 13 16 public class V2toV3 extends BaseConfigUpdate { 17 18 public InputStream convert(InputStream in, XmlOptions xmlOptions) throws XmlException, IOException { 19 return in; 20 } 21 } 22 | Popular Tags |