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

io.mosip.kernel.masterdata.validator.registereddevice.StatusCodeValue Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.kernel.masterdata.validator.registereddevice;

/**
 * Filter field value
 * 
 * @author Megha Tanga
 * @since 1.0.0
 */
public enum StatusCodeValue {
	REGISTERED("registered"), RETIRED("retired"), REVOKED("revoked");

	private String type;

	private StatusCodeValue(String type) {
		this.type = type;
	}

	@Override
	public String toString() {
		return type;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy