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

io.konga.metadata.definition.Validator 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.definition;

import io.konga.metadata.definition.enumerations.ValidatorTypes;

public class Validator {
	private ValidatorTypes type;
	private String value;
	public ValidatorTypes getType() {
		return type;
	}
	public void setType(ValidatorTypes type) {
		this.type = type;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy