Class BinaryDataProvider<T>

java.lang.Object
org.apache.cxf.jaxrs.provider.AbstractConfigurableProvider
org.apache.cxf.jaxrs.provider.BinaryDataProvider<T>
All Implemented Interfaces:
jakarta.ws.rs.ext.MessageBodyReader<T>, jakarta.ws.rs.ext.MessageBodyWriter<T>

public class BinaryDataProvider<T> extends AbstractConfigurableProvider implements jakarta.ws.rs.ext.MessageBodyReader<T>, jakarta.ws.rs.ext.MessageBodyWriter<T>
  • Constructor Details

    • BinaryDataProvider

      public BinaryDataProvider()
  • Method Details

    • isReadable

      public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt)
      Specified by:
      isReadable in interface jakarta.ws.rs.ext.MessageBodyReader<T>
    • readFrom

      public T readFrom(Class<T> clazz, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType type, jakarta.ws.rs.core.MultivaluedMap<String,String> headers, InputStream is) throws IOException
      Specified by:
      readFrom in interface jakarta.ws.rs.ext.MessageBodyReader<T>
      Throws:
      IOException
    • getSize

      public long getSize(T t, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt)
      Specified by:
      getSize in interface jakarta.ws.rs.ext.MessageBodyWriter<T>
    • isWriteable

      public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt)
      Specified by:
      isWriteable in interface jakarta.ws.rs.ext.MessageBodyWriter<T>
    • writeTo

      public void writeTo(T o, Class<?> clazz, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType type, jakarta.ws.rs.core.MultivaluedMap<String,Object> headers, OutputStream os) throws IOException
      Specified by:
      writeTo in interface jakarta.ws.rs.ext.MessageBodyWriter<T>
      Throws:
      IOException
    • copyInputToOutput

      protected void copyInputToOutput(InputStream is, OutputStream os, Annotation[] anns, jakarta.ws.rs.core.MultivaluedMap<String,Object> outHeaders) throws IOException
      Throws:
      IOException
    • copyUsingNio

      protected void copyUsingNio(InputStream is, OutputStream os, org.apache.cxf.continuations.Continuation cont)
    • handleRangeRequest

      protected void handleRangeRequest(InputStream is, OutputStream os, jakarta.ws.rs.core.HttpHeaders inHeaders, jakarta.ws.rs.core.MultivaluedMap<String,Object> outHeaders) throws IOException
      Throws:
      IOException
    • isRangeSupported

      protected boolean isRangeSupported()
    • setReportByteArraySize

      public void setReportByteArraySize(boolean report)
    • setCloseResponseInputStream

      public void setCloseResponseInputStream(boolean closeResponseInputStream)
    • setBufferSize

      public void setBufferSize(int bufferSize)
    • getNioHandler

      protected NioWriteHandler getNioHandler(InputStream in)