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

net.anotheria.portalkit.services.account.AccountStatusConstants Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package net.anotheria.portalkit.services.account;

/**
 * This class contains constants for account statuses that can be shared between different projects.
 *
 * @author lrosenberg
 * @since 18.01.13 10:15
 */
public class AccountStatusConstants {
	/**
	 * Everything is ok.
	 */
	public static final long STATUS_OK = 1;
	/**
	 * User is blocked, whatever that means in the context of an application.
	 */
	public static final long STATUS_BLOCKED = 2;
	/**
	 * Email is confirmed (reg confirmation link clicked).
	 */
	public static final long STATUS_EMAIL_CONFIRMED = 4;
	/**
	 * Email bounces, the email address is considered valid, but there are bounces.
	 */
	public static final long STATUS_EMAIL_BOUNCE = 8;


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy