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

com.manywho.sdk.enums.AuthenticationStatus Maven / Gradle / Ivy

There is a newer version: 1.25.0
Show newest version
package com.manywho.sdk.enums;

public enum AuthenticationStatus {
    AccessDenied("ACCESS_DENIED"),
    Authenticated("AUTHENTICATED");

    private final String text;

    private AuthenticationStatus(final String text) {
        this.text = text;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy