01: /*
02: * Copyright 2004 Clinton Begin
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package com.ibatis.sqlmap.engine.builder.xml;
17:
18: import java.io.InputStream;
19: import java.io.Reader;
20: import java.io.Writer;
21:
22: /**
23: * Interface for converting XML
24: */
25: public interface XmlConverter {
26:
27: /**
28: * Get a Reader based on another Reader
29: * @param reader - a Reader for the file to convert
30: * @return - the converted file
31: */
32: public Reader convertXml(Reader reader);
33:
34: /**
35: * Convert an XML file into another XML file
36: * @param reader - a reader for the XML to be converted from
37: * @param writer - a writer for the XML to be converted to
38: */
39: public void convertXml(Reader reader, Writer writer);
40:
41: /**
42: * Get an InputStream based on another InputStream
43: * @param inputStream - an InputStream for the file to convert
44: * @return - the converted file
45: */
46: public InputStream convertXml(InputStream inputStream);
47: }
|