public class UrlEncodingSerializer extends UonSerializer
Accept
types: application/x-www-form-urlencoded
Produces Content-Type
types: application/x-www-form-urlencoded
The following shows a sample object defined in Javascript:
{
id: 1,
name:
Using the "strict" syntax defined in this document, the equivalent URL-encoded notation would be as follows:
Modifier and Type | Class and Description |
---|---|
static class |
UrlEncodingSerializer.Expanded
Equivalent to
UrlEncodingSerializer. . |
static class |
UrlEncodingSerializer.PlainText
Equivalent to
UrlEncodingSerializer. . |
static class |
UrlEncodingSerializer.Readable
Equivalent to
UrlEncodingSerializer. . |
UonSerializer.Encoding
Modifier and Type | Field and Description |
---|---|
static UrlEncodingSerializer |
DEFAULT
Reusable instance of
UrlEncodingSerializer , all default settings. |
static UrlEncodingSerializer |
DEFAULT_EXPANDED
Reusable instance of
UrlEncodingSerializer.Expanded . |
static UrlEncodingSerializer |
DEFAULT_PLAINTEXT
Reusable instance of
UrlEncodingSerializer.PlainText . |
static UrlEncodingSerializer |
DEFAULT_READABLE
Reusable instance of
UrlEncodingSerializer.Readable . |
static String |
URLENC_expandedParams
Configuration property: Serialize bean property collections/arrays as separate key/value pairs.
|
DEFAULT_ENCODING, UON_addBeanTypeProperties, UON_encoding, UON_paramFormat
SERIALIZER_abridged, SERIALIZER_addBeanTypeProperties, SERIALIZER_detectRecursions, SERIALIZER_ignoreRecursions, SERIALIZER_initialDepth, SERIALIZER_listener, SERIALIZER_maxDepth, SERIALIZER_maxIndent, SERIALIZER_quoteChar, SERIALIZER_sortCollections, SERIALIZER_sortMaps, SERIALIZER_trimEmptyCollections, SERIALIZER_trimEmptyMaps, SERIALIZER_trimNullProperties, SERIALIZER_trimStrings, SERIALIZER_uriContext, SERIALIZER_uriRelativity, SERIALIZER_uriResolution, SERIALIZER_useWhitespace
BEAN_beanClassVisibility, BEAN_beanConstructorVisibility, BEAN_beanDictionary, BEAN_beanDictionary_add, BEAN_beanDictionary_remove, BEAN_beanFieldVisibility, BEAN_beanFilters, BEAN_beanFilters_add, BEAN_beanFilters_remove, BEAN_beanMapPutReturnsOldValue, BEAN_beanMethodVisibility, BEAN_beansRequireDefaultConstructor, BEAN_beansRequireSerializable, BEAN_beansRequireSettersForGetters, BEAN_beansRequireSomeProperties, BEAN_beanTypePropertyName, BEAN_debug, BEAN_excludeProperties, BEAN_ignoreInvocationExceptionsOnGetters, BEAN_ignoreInvocationExceptionsOnSetters, BEAN_ignorePropertiesWithoutSetters, BEAN_ignoreUnknownBeanProperties, BEAN_ignoreUnknownNullBeanProperties, BEAN_implClasses, BEAN_includeProperties, BEAN_locale, BEAN_mediaType, BEAN_notBeanClasses, BEAN_notBeanClasses_add, BEAN_notBeanClasses_remove, BEAN_notBeanPackages, BEAN_notBeanPackages_add, BEAN_notBeanPackages_remove, BEAN_pojoSwaps, BEAN_pojoSwaps_add, BEAN_pojoSwaps_remove, BEAN_propertyNamer, BEAN_sortProperties, BEAN_timeZone, BEAN_useInterfaceProxies, BEAN_useJavaBeanIntrospector, DEFAULT_SORTED
Constructor and Description |
---|
UrlEncodingSerializer(PropertyStore ps)
Constructor.
|
UrlEncodingSerializer(PropertyStore ps,
String produces,
String... accept)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
ObjectMap |
asMap()
Returns the properties defined on this bean context as a simple map for debugging purposes.
|
UrlEncodingSerializerBuilder |
builder()
Creates a builder from this context object.
|
static UrlEncodingSerializerBuilder |
create()
Instantiates a new clean-slate
UrlEncodingSerializerBuilder object. |
WriterSerializerSession |
createSession(SerializerSessionArgs args)
Create the session object used for actual serialization of objects.
|
isWriterSerializer, println, serialize, toString, toStringObject
createDefaultSessionArgs, createSession, getMediaTypes, getResponseContentType, serialize
_class, createBeanSession, createBeanSession, createDefaultBeanSessionArgs, createSession, createSession, dumpCacheStats, getBeanMeta, getBeanRegistry, getBeanTypePropertyName, getClassMeta, getClassMeta, getClassMetaForObject, getExcludeProperties, getImplClassConstructor, getIncludeProperties, hasSameCache, isBean, isNotABean, newInstance, newInstance, newInstanceFromOuter, object, resolveClassMeta, string
equals, getArrayProperty, getArrayProperty, getBooleanProperty, getClassArrayProperty, getClassArrayProperty, getClassArrayProperty, getClassListProperty, getClassListProperty, getClassMapProperty, getClassMapProperty, getClassProperty, getClassSetProperty, getClassSetProperty, getInstanceArrayProperty, getInstanceArrayProperty, getInstanceArrayProperty, getInstanceProperty, getInstanceProperty, getInstanceProperty, getIntegerProperty, getListProperty, getListProperty, getLongProperty, getMapProperty, getProperty, getProperty, getPropertyKeys, getPropertyStore, getSetProperty, getSetProperty, getStringProperty, hashCode, toString
public static final String URLENC_expandedParams
Boolean
If [1,2,3]
results in ?key=$a(1,2,3)
.
If ?key=1&key=2&key=3
.
This option only applies to beans.
Collections
or Lists
as bean property types instead of arrays since arrays have to be recreated from scratch every time a value
is added to it.
public static final UrlEncodingSerializer DEFAULT
UrlEncodingSerializer
, all default settings.public static final UrlEncodingSerializer DEFAULT_PLAINTEXT
UrlEncodingSerializer.PlainText
.public static final UrlEncodingSerializer DEFAULT_EXPANDED
UrlEncodingSerializer.Expanded
.public static final UrlEncodingSerializer DEFAULT_READABLE
UrlEncodingSerializer.Readable
.public UrlEncodingSerializer(PropertyStore ps)
ps
- The property store containing all the settings for this object.public UrlEncodingSerializer(PropertyStore ps, String produces, String... accept)
ps
- The property store containing all the settings for this object.produces
- The media type that this serializer produces.accept
- The accept media types that the serializer can handle.
Can contain meta-characters per the media-type
specification of
RFC2616/14.1
If empty, then assumes the only media type supported is produces
.
For example, if this serializer produces
public UrlEncodingSerializerBuilder builder()
Context
Builders are used to define new contexts (e.g. serializers, parsers) based on existing configurations.
builder
in class UonSerializer
public static UrlEncodingSerializerBuilder create()
UrlEncodingSerializerBuilder
object.
This is equivalent to simply calling
.
Note that this method creates a builder initialized to all default settings, whereas builder()
copies
the settings of the object called on.
UrlEncodingSerializerBuilder
object.public WriterSerializerSession createSession(SerializerSessionArgs args)
Serializer
createSession
in class UonSerializer
args
- Runtime arguments.
These specify session-level information such as locale and URI context.
It also include session-level properties that override the properties defined on the bean and serializer
contexts.public ObjectMap asMap()
Context
asMap
in class UonSerializer
Copyright © 2018 Apache. All rights reserved.