All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.boon.json.annotations.JsonIgnore Maven / Gradle / Ivy

Go to download

Simple opinionated Java for the novice to expert level Java Programmer. Low Ceremony. High Productivity. A real boon to Java to developers!

There is a newer version: 0.34
Show newest version
package org.boon.json.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Stops field or property from being serialized into JSON.
 * Does not stop field from being populated.
 *
 * @author Rick Hightower
 *
 */
@Target({ ElementType.METHOD, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface JsonIgnore {
    boolean value() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy