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

de.adorsys.ledgers.sca.domain.AuthCodeStatusBO Maven / Gradle / Ivy

There is a newer version: 4.17
Show newest version
package de.adorsys.ledgers.sca.domain;

public enum AuthCodeStatusBO {
	/*
	 * The authorization process is created, but the authorization code was not sent to the user.
	 * 
	 * This occurs, when the operation creates authorization requirement at initialization.
	 * 
	 */
	INITIATED,
	/*
	 * The authorization code was generated and sent to the user. From the
	 * moment the code is sent, expiration starts counting.
	 */
	SENT,
	/*
	 * The user successfully validated the authorization code.
	 */
	VALIDATED, 
	/*
	 * The validation of the code failed.
	 */
	FAILED,
	/*
	 * The code is expired.
	 */
	EXPIRED, 
	/*
	 * The underlying process is executed. Entries can be removed from the database.
	 */
	DONE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy