src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/XMLStreamReaderToXMLStreamWriter.java

Print this page
rev 472 : 8036030: Update JAX-WS RI integration to latest version
   1 /*
   2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  31 import javax.xml.stream.XMLStreamConstants;
  32 import javax.xml.stream.XMLStreamException;
  33 import javax.xml.stream.XMLStreamReader;
  34 import javax.xml.stream.XMLStreamWriter;
  35 import javax.xml.XMLConstants;
  36 
  37 import com.sun.xml.internal.ws.streaming.MtomStreamWriter;
  38 import com.sun.xml.internal.org.jvnet.staxex.Base64Data;
  39 import com.sun.xml.internal.org.jvnet.staxex.XMLStreamReaderEx;
  40 import com.sun.xml.internal.org.jvnet.staxex.XMLStreamWriterEx;
  41 
  42 /**
  43  * Reads a sub-tree from {@link XMLStreamReader} and writes to {@link XMLStreamWriter}
  44  * as-is.
  45  *
  46  * <p>
  47  * This class can be sub-classed to implement a simple transformation logic.
  48  *
  49  * @author Kohsuke Kawaguchi
  50  * @author Ryan Shoemaker


  51  */
  52 public class XMLStreamReaderToXMLStreamWriter {
  53 
  54     private static final int BUF_SIZE = 4096;
  55 
  56     protected XMLStreamReader in;
  57     protected XMLStreamWriter out;
  58 
  59     private char[] buf;
  60 
  61     boolean optimizeBase64Data = false;
  62 
  63     AttachmentMarshaller mtomAttachmentMarshaller;
  64 
  65     /**
  66      * Reads one subtree and writes it out.
  67      *
  68      * <p>
  69      * The {@link XMLStreamWriter} never receives a start/end document event.
  70      * Those need to be written separately by the caller.


   1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  31 import javax.xml.stream.XMLStreamConstants;
  32 import javax.xml.stream.XMLStreamException;
  33 import javax.xml.stream.XMLStreamReader;
  34 import javax.xml.stream.XMLStreamWriter;
  35 import javax.xml.XMLConstants;
  36 
  37 import com.sun.xml.internal.ws.streaming.MtomStreamWriter;
  38 import com.sun.xml.internal.org.jvnet.staxex.Base64Data;
  39 import com.sun.xml.internal.org.jvnet.staxex.XMLStreamReaderEx;
  40 import com.sun.xml.internal.org.jvnet.staxex.XMLStreamWriterEx;
  41 
  42 /**
  43  * Reads a sub-tree from {@link XMLStreamReader} and writes to {@link XMLStreamWriter}
  44  * as-is.
  45  *
  46  * <p>
  47  * This class can be sub-classed to implement a simple transformation logic.
  48  *
  49  * @author Kohsuke Kawaguchi
  50  * @author Ryan Shoemaker
  51  *
  52  * @deprecated use com.sun.xml.internal.org.jvnet.staxex.util.XMLStreamReaderToXMLStreamWriter
  53  */
  54 public class XMLStreamReaderToXMLStreamWriter {
  55 
  56     private static final int BUF_SIZE = 4096;
  57 
  58     protected XMLStreamReader in;
  59     protected XMLStreamWriter out;
  60 
  61     private char[] buf;
  62 
  63     boolean optimizeBase64Data = false;
  64 
  65     AttachmentMarshaller mtomAttachmentMarshaller;
  66 
  67     /**
  68      * Reads one subtree and writes it out.
  69      *
  70      * <p>
  71      * The {@link XMLStreamWriter} never receives a start/end document event.
  72      * Those need to be written separately by the caller.