public interface MetadataValue
MetadataContainer.getMetadata()
.
Implementations must make their classes serializable using
MetadataContainer.serialize(MetadataValue)
and
MetadataContainer.deserialize(Class, String)
. That means they can be
handled by Jackson's JSON generator / parser. Most Java beans would suffice,
or if immutable POJO, annotate the constructor with
JsonFactory
. Also, any type used for
the member variables need to be serializable by the same library.String getKey()
MetadataValue
, useful when grouping in a
MetadataContainer
.Copyright © 2004-2014. All Rights Reserved.