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

io.konga.metadata.annotations.FieldSets Maven / Gradle / Ivy

Go to download

Konga Metadata is the Java Metadata Generator for Konga projects. It leverages an annotation framework along with a reflective JSON generator to get your metadata - defined within your model POJOs directly. See more about this project at http://konga.io/.

The newest version!
package io.konga.metadata.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Define an array of field sets that an entity has defined for its fields
 * @author psanchezmarg
 *
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD})
public @interface FieldSets {

	/**
	 * Array of field sets
	 * @return
	 */
	FieldSet[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy