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

io.mosip.pmp.authdevice.constants.Purpose Maven / Gradle / Ivy

package io.mosip.pmp.authdevice.constants;

public enum Purpose {
	REGISTRATION("Registration"),AUTH("Auth");
	
	private String purpose;

	private Purpose(String purpose) {
		this.purpose = purpose;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy