org.jboss.resteasy.plugins.providers.multipart.MultipartWriter Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.providers.multipart;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.concurrent.CompletionStage;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.Provider;
import org.jboss.resteasy.spi.AsyncMessageBodyWriter;
import org.jboss.resteasy.spi.AsyncOutputStream;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
@Provider
@Produces("multipart/*")
public class MultipartWriter extends AbstractMultipartWriter implements AsyncMessageBodyWriter {
public boolean isWriteable(Class> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
return MultipartOutput.class.isAssignableFrom(type);
}
public long getSize(MultipartOutput multipartOutput, Class> type, Type genericType, Annotation[] annotations,
MediaType mediaType) {
return -1;
}
public void writeTo(MultipartOutput multipartOutput, Class> type, Type genericType, Annotation[] annotations,
MediaType mediaType, MultivaluedMap httpHeaders, OutputStream entityStream)
throws IOException, WebApplicationException {
write(multipartOutput, mediaType, httpHeaders, entityStream, annotations);
}
@Override
public CompletionStage asyncWriteTo(MultipartOutput multipartOutput, Class> type, Type genericType,
Annotation[] annotations,
MediaType mediaType, MultivaluedMap httpHeaders,
AsyncOutputStream entityStream) {
return asyncWrite(multipartOutput, mediaType, httpHeaders, entityStream, annotations);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy