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

io.mosip.preregistration.notification.code.RequestCodes Maven / Gradle / Ivy

There is a newer version: 1.0.10-rc1
Show newest version
/* 
 * Copyright
 * 
 */
package io.mosip.preregistration.notification.code;

/**
 * 
 * This Enum provides the constant variables to accept input request.
 * 
 * @author Sanober Noor
 * @since 1.0.0
 */

public enum RequestCodes {

	/* preRegistration Id */
	PREID(""),
   /**
 * 
 */
SMS("sms"),  
/**
 * 
 */
EMAIL("email"),
MESSAGE("Email and sms request successfully submitted");
	
	/**
	 * @param code
	 */
	private RequestCodes(String code) {
		this.code = code;
	}

	/**
	 * Code
	 */
	private final String code;

	/**
	 * @return the code
	 */
	public String getCode() {
		return code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy