Uses of Interface
org.apache.juneau.httppart.HttpPartSerializer
Packages that use HttpPartSerializer
Package
Description
HTTP Header Beans
HTTP Part Beans
REST Server API
REST Annotations
REST Client API
Remote REST API
REST Server Mock API
-
Uses of HttpPartSerializer in org.apache.juneau.http.annotation
Method parameters in org.apache.juneau.http.annotation with type arguments of type HttpPartSerializerModifier and TypeMethodDescriptionFormDataAnnotation.Builder.serializer
(Class<? extends HttpPartSerializer> value) Sets theFormData.serializer()
property on this annotation.HeaderAnnotation.Builder.serializer
(Class<? extends HttpPartSerializer> value) Sets theHeader.serializer()
property on this annotation.PathAnnotation.Builder.serializer
(Class<? extends HttpPartSerializer> value) Sets thePath.serializer()
property on this annotation.QueryAnnotation.Builder.serializer
(Class<? extends HttpPartSerializer> value) Sets theQuery.serializer()
property on this annotation.RequestAnnotation.Builder.serializer
(Class<? extends HttpPartSerializer> value) Sets theRequest.serializer()
property on this annotation.ResponseAnnotation.Builder.serializer
(Class<? extends HttpPartSerializer> value) Sets theResponse.serializer()
property on this annotation. -
Uses of HttpPartSerializer in org.apache.juneau.http.header
Methods in org.apache.juneau.http.header with parameters of type HttpPartSerializerModifier and TypeMethodDescriptionSerializedHeader.serializer
(HttpPartSerializer value) Sets the serializer to use for serializing the value to a string value. -
Uses of HttpPartSerializer in org.apache.juneau.http.part
Methods in org.apache.juneau.http.part with parameters of type HttpPartSerializerModifier and TypeMethodDescriptionSerializedPart.serializer
(HttpPartSerializer value) Sets the serializer to use for serializing the value to a string value. -
Uses of HttpPartSerializer in org.apache.juneau.httppart
Subinterfaces of HttpPartSerializer in org.apache.juneau.httppartModifier and TypeInterfaceDescriptionstatic interface
Represent "no" part part serializer.Classes in org.apache.juneau.httppart that implement HttpPartSerializerModifier and TypeClassDescriptionclass
Base class for implementations ofHttpPartSerializer
class
An implementation ofHttpPartSerializer
that simply serializes everything usingObject.toString()
.Methods in org.apache.juneau.httppart that return types with arguments of type HttpPartSerializerModifier and TypeMethodDescriptionClass<? extends HttpPartSerializer>
HttpPartSchema.getSerializer()
Returns theserializer field of this schema.Method parameters in org.apache.juneau.httppart with type arguments of type HttpPartSerializerModifier and TypeMethodDescriptionHttpPartSchema.Builder.serializer
(Class<? extends HttpPartSerializer> value) Identifies the part serializer to use for serializing this part.HttpPartSerializer.Creator.type
(Class<? extends HttpPartSerializer> value) -
Uses of HttpPartSerializer in org.apache.juneau.httppart.bean
Methods in org.apache.juneau.httppart.bean that return types with arguments of type HttpPartSerializerModifier and TypeMethodDescriptionResponseBeanMeta.getPartSerializer()
Returns the part serializer to use to serialize this response.RequestBeanPropertyMeta.getSerializer()
Returns the serializer to use for serializing the bean property value.ResponseBeanPropertyMeta.getSerializer()
Returns the serializer to use for serializing the bean property value. -
Uses of HttpPartSerializer in org.apache.juneau.oapi
Classes in org.apache.juneau.oapi that implement HttpPartSerializerModifier and TypeClassDescriptionclass
Serializes POJOs to values suitable for transmission as HTTP headers, query/form-data parameters, and path variables. -
Uses of HttpPartSerializer in org.apache.juneau.rest
Methods in org.apache.juneau.rest that return HttpPartSerializerModifier and TypeMethodDescriptionRestContext.getPartSerializer()
Returns the HTTP-part serializer associated with this resource.RestOpContext.getPartSerializer()
Bean property getter:partSerializer .Methods in org.apache.juneau.rest with parameters of type HttpPartSerializerModifier and TypeMethodDescriptionRestContext.Builder.partSerializer
(HttpPartSerializer value) Specifies the part serializer to use for serializing HTTP parts for this class.RestOpContext.Builder.partSerializer
(HttpPartSerializer value) Specifies the part serializer to use for serializing HTTP parts for this operation.Method parameters in org.apache.juneau.rest with type arguments of type HttpPartSerializerModifier and TypeMethodDescriptionRestContext.Builder.partSerializer
(Class<? extends HttpPartSerializer> value) Specifies the part serializer to use for serializing HTTP parts for this class.RestOpContext.Builder.partSerializer
(Class<? extends HttpPartSerializer> value) Specifies the part serializer to use for serializing HTTP parts for this operation. -
Uses of HttpPartSerializer in org.apache.juneau.rest.annotation
Method parameters in org.apache.juneau.rest.annotation with type arguments of type HttpPartSerializerModifier and TypeMethodDescriptionRestAnnotation.Builder.partSerializer
(Class<? extends HttpPartSerializer> value) Sets theRest.partSerializer()
property on this annotation. -
Uses of HttpPartSerializer in org.apache.juneau.rest.client
Methods in org.apache.juneau.rest.client that return HttpPartSerializerModifier and TypeMethodDescriptionprotected HttpPartSerializer
RestClient.getPartSerializer()
Returns the part serializer associated with this client.protected HttpPartSerializer
RestClient.getPartSerializer
(Class<? extends HttpPartSerializer> c) Returns the part serializer instance of the specified type.Methods in org.apache.juneau.rest.client with parameters of type HttpPartSerializerModifier and TypeMethodDescriptionprotected Header
RestRequest.createHeader
(String name, Object value, HttpPartSerializer serializer, HttpPartSchema schema, Boolean skipIfEmpty) Creates a new header.protected NameValuePair
RestRequest.createPart
(String name, Object value, HttpPartType type, HttpPartSerializer serializer, HttpPartSchema schema, Boolean skipIfEmpty) Creates a new query/form-data/path part.RestClient.Builder.partSerializer
(HttpPartSerializer value) Part serializer.Method parameters in org.apache.juneau.rest.client with type arguments of type HttpPartSerializerModifier and TypeMethodDescriptionprotected HttpPartSerializer
RestClient.getPartSerializer
(Class<? extends HttpPartSerializer> c) Returns the part serializer instance of the specified type.RestClient.Builder.partSerializer
(Class<? extends HttpPartSerializer> value) Part serializer. -
Uses of HttpPartSerializer in org.apache.juneau.rest.client.remote
Methods in org.apache.juneau.rest.client.remote that return types with arguments of type HttpPartSerializerModifier and TypeMethodDescriptionRemoteOperationArg.getSerializer()
Returns the HTTP part serializer to use for serializing this part. -
Uses of HttpPartSerializer in org.apache.juneau.rest.httppart
Methods in org.apache.juneau.rest.httppart that return HttpPartSerializerConstructors in org.apache.juneau.rest.httppart with parameters of type HttpPartSerializerModifierConstructorDescriptionResponsePartMeta
(HttpPartType partType, HttpPartSchema schema, HttpPartSerializer serializer) Constructor. -
Uses of HttpPartSerializer in org.apache.juneau.rest.mock
Methods in org.apache.juneau.rest.mock with parameters of type HttpPartSerializerModifier and TypeMethodDescriptionMockRestClient.Builder.partSerializer
(HttpPartSerializer value) Method parameters in org.apache.juneau.rest.mock with type arguments of type HttpPartSerializerModifier and TypeMethodDescriptionMockRestClient.Builder.partSerializer
(Class<? extends HttpPartSerializer> value) -
Uses of HttpPartSerializer in org.apache.juneau.uon
Classes in org.apache.juneau.uon that implement HttpPartSerializerModifier and TypeClassDescriptionclass
Serializes POJO models to UON (a notation for URL-encoded query parameter values).static class
Equivalent toUonSerializer.
.create ().encoding().build();static class
Equivalent toUonSerializer.
.create ().ws().build(); -
Uses of HttpPartSerializer in org.apache.juneau.urlencoding
Classes in org.apache.juneau.urlencoding that implement HttpPartSerializerModifier and TypeClassDescriptionclass
Serializes POJO models to URL-encoded notation with UON-encoded values (a notation for URL-encoded query paramter values).static class
Equivalent toUrlEncodingSerializer.
.create ().expandedParams().build();static class
Equivalent toUrlEncodingSerializer.
.create ().plainTextParts().build();static class
Equivalent toUrlEncodingSerializer.
.create ().useWhitespace().build();