Class FormEncodingProvider<T>

  • All Implemented Interfaces:
    javax.ws.rs.ext.MessageBodyReader<T>, javax.ws.rs.ext.MessageBodyWriter<T>

    @Produces({"application/x-www-form-urlencoded","multipart/form-data"})
    @Consumes({"application/x-www-form-urlencoded","multipart/form-data"})
    @Provider
    public class FormEncodingProvider<T>
    extends AbstractConfigurableProvider
    implements javax.ws.rs.ext.MessageBodyReader<T>, javax.ws.rs.ext.MessageBodyWriter<T>
    • Constructor Detail

      • FormEncodingProvider

        public FormEncodingProvider()
      • FormEncodingProvider

        public FormEncodingProvider​(boolean expectEncoded)
    • Method Detail

      • setExpectedEncoded

        public void setExpectedEncoded​(boolean expect)
      • setAttachmentDirectory

        public void setAttachmentDirectory​(String dir)
      • setAttachmentThreshold

        public void setAttachmentThreshold​(String threshold)
      • setAttachmentMaxSize

        public void setAttachmentMaxSize​(String maxSize)
      • setValidator

        public void setValidator​(FormValidator formValidator)
      • isReadable

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

        protected boolean keepEncoded​(Annotation[] anns)
      • persistParamsOnMessage

        protected void persistParamsOnMessage​(javax.ws.rs.core.MultivaluedMap<String,​String> params)
      • populateMap

        protected void populateMap​(javax.ws.rs.core.MultivaluedMap<String,​String> params,
                                   Annotation[] anns,
                                   InputStream is,
                                   javax.ws.rs.core.MediaType mt,
                                   boolean decode)
        Retrieve map of parameters from the passed in message
      • validateMap

        protected void validateMap​(javax.ws.rs.core.MultivaluedMap<String,​String> params)
      • getSize

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

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

        public void writeTo​(T obj,
                            Class<?> c,
                            Type t,
                            Annotation[] anns,
                            javax.ws.rs.core.MediaType mt,
                            javax.ws.rs.core.MultivaluedMap<String,​Object> headers,
                            OutputStream os)
                     throws IOException,
                            javax.ws.rs.WebApplicationException
        Specified by:
        writeTo in interface javax.ws.rs.ext.MessageBodyWriter<T>
        Throws:
        IOException
        javax.ws.rs.WebApplicationException