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

io.konga.metadata.definition.FieldSetConfiguration Maven / Gradle / Ivy

package io.konga.metadata.definition;

/**
 * Configures a field set with extra parameters to modify the standard behavior
 * @author psanchezmarg
 *
 */
public class FieldSetConfiguration {

	/**
	 * Use a different view for rendering the fields within this set
	 */
	private String view;

	public String getView() {
		return view;
	}

	public void setView(String view) {
		this.view = view;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy