jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/MtomStreamWriter.java
changeset 23782 953bfc3fbe31
parent 22679 d785acd84a14
equal deleted inserted replaced
23403:85dbdc227c5e 23782:953bfc3fbe31
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     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.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    34 /**
    34 /**
    35  * A {@link XMLStreamWriter} that used for MTOM encoding may provide its own
    35  * A {@link XMLStreamWriter} that used for MTOM encoding may provide its own
    36  * {@link AttachmentMarshaller}. The marshaller could do processing based on
    36  * {@link AttachmentMarshaller}. The marshaller could do processing based on
    37  * MTOM threshold, and make decisions about inlining the attachment data or not.
    37  * MTOM threshold, and make decisions about inlining the attachment data or not.
    38  *
    38  *
       
    39  *
    39  * @author Jitendra Kotamraju
    40  * @author Jitendra Kotamraju
    40  * @see JAXBMessage
    41  * @see JAXBMessage
    41  * @see MtomCodec
    42  * @see MtomCodec
       
    43  *
       
    44  * @deprecated use com.sun.xml.internal.org.jvnet.staxex.util.MtomStreamWriter
    42  */
    45  */
    43 public interface MtomStreamWriter {
    46 public interface MtomStreamWriter {
    44     AttachmentMarshaller getAttachmentMarshaller();
    47     AttachmentMarshaller getAttachmentMarshaller();
    45 }
    48 }