Searched defs:writeBinary (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DXMLStreamWriterEx.java59 * Consider renaming writeBinary to writeBytesAsBase64 to be consistent with
94 void writeBinary(byte[] data, int start, int len, String contentType) throws XMLStreamException; method in interface:XMLStreamWriterEx
100 * This method works like the {@link #writeBinary(byte[], int, int, String)} method,
108 void writeBinary(DataHandler data) throws XMLStreamException; method in interface:XMLStreamWriterEx
114 * This version of the writeBinary method allows the caller to produce
124 * {@link #writeBinary(byte[], int, int, String)}. Must not be null.
129 OutputStream writeBinary(String contentType) throws XMLStreamException; method in interface:XMLStreamWriterEx
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferCreator.java252 public void writeBinary(byte[] bytes, int offset, int length, String endpointURL) throws XMLStreamException { method in class:StreamWriterBufferCreator
261 public void writeBinary(DataHandler dataHandler) throws XMLStreamException { method in class:StreamWriterBufferCreator
268 public OutputStream writeBinary(String endpointURL) throws XMLStreamException { method in class:StreamWriterBufferCreator
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java265 public void writeBinary(byte[] data, int start, int len, String contentType) throws XMLStreamException { method in class:MtomCodec.MtomStreamWriterImpl
272 writeBinary(bab);
275 public void writeBinary(DataHandler dataHandler) throws XMLStreamException { method in class:MtomCodec.MtomStreamWriterImpl
277 writeBinary(new ByteArrayBuffer(dataHandler));
280 public OutputStream writeBinary(String contentType) throws XMLStreamException { method in class:MtomCodec.MtomStreamWriterImpl
289 writeBinary(binaryData.getDataHandler());
295 private void writeBinary(ByteArrayBuffer bab) { method in class:MtomCodec.MtomStreamWriterImpl

Completed in 53 milliseconds