com.sun.xml.ws.message.DataHandlerAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rt Show documentation
Show all versions of rt Show documentation
JAX-WS Reference Implementation Runtime
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.message;
import com.sun.istack.NotNull;
import com.sun.xml.ws.api.message.Attachment;
import jakarta.activation.DataHandler;
import jakarta.xml.soap.AttachmentPart;
import jakarta.xml.soap.SOAPException;
import jakarta.xml.soap.SOAPMessage;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;
import jakarta.xml.ws.WebServiceException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.ByteArrayOutputStream;
/**
* @author Jitendra Kotamraju
*/
public final class DataHandlerAttachment implements Attachment {
private final DataHandler dh;
private final String contentId;
String contentIdNoAngleBracket;
/**
* This will be constructed by {@link com.sun.xml.ws.message.jaxb.AttachmentMarshallerImpl}
*/
public DataHandlerAttachment(@NotNull String contentId, @NotNull DataHandler dh) {
this.dh = dh;
this.contentId = contentId;
}
@Override
public String getContentId() {
// return contentId;
if (contentIdNoAngleBracket == null) {
contentIdNoAngleBracket = contentId;
if (contentIdNoAngleBracket != null && contentIdNoAngleBracket.charAt(0) == '<')
contentIdNoAngleBracket = contentIdNoAngleBracket.substring(1, contentIdNoAngleBracket.length()-1);
}
return contentIdNoAngleBracket;
}
@Override
public String getContentType() {
return dh.getContentType();
}
@Override
public byte[] asByteArray() {
try {
ByteArrayOutputStream os = new ByteArrayOutputStream();
dh.writeTo(os);
return os.toByteArray();
} catch (IOException e) {
throw new WebServiceException(e);
}
}
@Override
public DataHandler asDataHandler() {
return dh;
}
@Override
public Source asSource() {
try {
return new StreamSource(dh.getInputStream());
} catch (IOException e) {
throw new WebServiceException(e);
}
}
@Override
public InputStream asInputStream() {
try {
return dh.getInputStream();
} catch (IOException e) {
throw new WebServiceException(e);
}
}
@Override
public void writeTo(OutputStream os) throws IOException {
dh.writeTo(os);
}
@Override
public void writeTo(SOAPMessage saaj) throws SOAPException {
AttachmentPart part = saaj.createAttachmentPart();
part.setDataHandler(dh);
part.setContentId(contentId);
saaj.addAttachmentPart(part);
}
}