Package com.fasterxml.jackson.annotation
Annotation Interface JsonRootName
Annotation similar to JAXB
javax.xml.bind.annotation.XmlRootElement
,
used to indicate name to use for root-level wrapping, if wrapping is
enabled. Annotation itself does not indicate that wrapping should
be used; but if it is, the name used for serialization should be the
name specified here, and deserializer will expect the name as well.-
Required Element Summary
Required Elements -
Optional Element Summary
Optional Elements
-
Element Details
-
value
String valueRoot name to use if root-level wrapping is enabled. For data formats that use composite names (XML), this is the "local part" of the name to use.
-
-