Package org.apache.cxf.jaxrs.provider
Class FormEncodingProvider<T>
java.lang.Object
org.apache.cxf.jaxrs.provider.AbstractConfigurableProvider
org.apache.cxf.jaxrs.provider.FormEncodingProvider<T>
- All Implemented Interfaces:
jakarta.ws.rs.ext.MessageBodyReader<T>,jakarta.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 jakarta.ws.rs.ext.MessageBodyReader<T>, jakarta.ws.rs.ext.MessageBodyWriter<T>
-
Field Summary
Fields inherited from class org.apache.cxf.jaxrs.provider.AbstractConfigurableProvider
BUNDLE, LOG -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlonggetSize(T t, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType) booleanisReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt) booleanisWriteable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt) protected booleankeepEncoded(Annotation[] anns) protected voidpersistParamsOnMessage(jakarta.ws.rs.core.MultivaluedMap<String, String> params) protected voidpopulateMap(jakarta.ws.rs.core.MultivaluedMap<String, String> params, Annotation[] anns, InputStream is, jakarta.ws.rs.core.MediaType mt, boolean decode) Retrieve map of parameters from the passed in messagereadFrom(Class<T> clazz, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt, jakarta.ws.rs.core.MultivaluedMap<String, String> headers, InputStream is) voidvoidsetAttachmentMaxSize(String maxSize) voidsetAttachmentThreshold(String threshold) voidsetExpectedEncoded(boolean expect) voidsetValidator(FormValidator formValidator) protected voidvalidateMap(jakarta.ws.rs.core.MultivaluedMap<String, String> params) voidwriteTo(T obj, Class<?> c, Type t, Annotation[] anns, jakarta.ws.rs.core.MediaType mt, jakarta.ws.rs.core.MultivaluedMap<String, Object> headers, OutputStream os) Methods inherited from class org.apache.cxf.jaxrs.provider.AbstractConfigurableProvider
getBus, getConsumeMediaTypes, getEnableBuffering, getEnableStreaming, getProduceMediaTypes, init, isPayloadEmpty, isPayloadEmpty, reportEmptyContentLength, setBus, setConsumeMediaTypes, setEnableBuffering, setEnableStreaming, setProduceMediaTypes
-
Constructor Details
-
FormEncodingProvider
public FormEncodingProvider() -
FormEncodingProvider
public FormEncodingProvider(boolean expectEncoded)
-
-
Method Details
-
setExpectedEncoded
public void setExpectedEncoded(boolean expect) -
setAttachmentDirectory
-
setAttachmentThreshold
-
setAttachmentMaxSize
-
setValidator
-
isReadable
public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt) - Specified by:
isReadablein interfacejakarta.ws.rs.ext.MessageBodyReader<T>
-
readFrom
public T readFrom(Class<T> clazz, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt, jakarta.ws.rs.core.MultivaluedMap<String, String> headers, InputStream is) throws IOException- Specified by:
readFromin interfacejakarta.ws.rs.ext.MessageBodyReader<T>- Throws:
IOException
-
keepEncoded
-
persistParamsOnMessage
-
createMap
protected jakarta.ws.rs.core.MultivaluedMap<String,String> createMap(Class<?> clazz) throws Exception - Throws:
Exception
-
populateMap
protected void populateMap(jakarta.ws.rs.core.MultivaluedMap<String, String> params, Annotation[] anns, InputStream is, jakarta.ws.rs.core.MediaType mt, boolean decode) Retrieve map of parameters from the passed in message -
validateMap
-
getSize
public long getSize(T t, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType) - Specified by:
getSizein interfacejakarta.ws.rs.ext.MessageBodyWriter<T>
-
isWriteable
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mt) - Specified by:
isWriteablein interfacejakarta.ws.rs.ext.MessageBodyWriter<T>
-
writeTo
public void writeTo(T obj, Class<?> c, Type t, Annotation[] anns, jakarta.ws.rs.core.MediaType mt, jakarta.ws.rs.core.MultivaluedMap<String, Object> headers, OutputStream os) throws IOException, jakarta.ws.rs.WebApplicationException- Specified by:
writeToin interfacejakarta.ws.rs.ext.MessageBodyWriter<T>- Throws:
IOExceptionjakarta.ws.rs.WebApplicationException
-