KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > migrate > V2toV3


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

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 JavaDoc;
11 import java.io.InputStream JavaDoc;
12
13 /**
14  * No new manditory elements. No deprecated elements.
15  */

16 public class V2toV3 extends BaseConfigUpdate {
17
18   public InputStream JavaDoc convert(InputStream JavaDoc in, XmlOptions xmlOptions) throws XmlException, IOException JavaDoc {
19     return in;
20   }
21 }
22
Popular Tags