Sha256: 343afb3121b673855a6be0c3ba659e2808776fa075cf492b9faf58f239d48285
Contents?: true
Size: 881 Bytes
Versions: 164
Compression:
Stored size: 881 Bytes
Contents
package sh.calaba.org.codehaus.jackson.map.annotate; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import sh.calaba.org.codehaus.jackson.annotate.JacksonAnnotation; /** * Annotation similar to {@link 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, name used for serialization should be name * specified here, and deserializer will expect the name as well. * * @since 1.9.0 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonRootName { /** * Root name to use if root-level wrapping is enabled. */ public String value(); }
Version data entries
164 entries across 164 versions & 2 rubygems