Sha256: cf9903724ecd9591f5c433f8e5bd74d407ff4a9725374c783602ff9dfd6e8064
Contents?: true
Size: 1.02 KB
Versions: 164
Compression:
Stored size: 1.02 KB
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 used to indicate which logical filter is to be used * for filtering out properties of type (class) annotated; * association made by this annotation declaring ids of filters, * and {@link sh.calaba.org.codehaus.jackson.map.ObjectMapper} (or objects * it delegates to) providing matching filters by id. * Filters to use are of type * {@link sh.calaba.org.codehaus.jackson.map.ser.BeanPropertyFilter} and * are registered through {@link sh.calaba.org.codehaus.jackson.map.ObjectMapper} * * @since 1.7 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonFilter { /** * Id of filter to use; if empty String (""), no filter is to be used. */ public String value(); }
Version data entries
164 entries across 164 versions & 2 rubygems