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

org.openmetadata.schema.auth.JWTTokenExpiry Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version

package org.openmetadata.schema.auth;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;


/**
 * JWT Auth Token expiration in days
 * 
 */
@Generated("jsonschema2pojo")
public enum JWTTokenExpiry {

    OneHour("OneHour"),
    One("1"),
    Seven("7"),
    Thirty("30"),
    Sixty("60"),
    Ninety("90"),
    Unlimited("Unlimited");
    private final String value;
    private final static Map CONSTANTS = new HashMap();

    static {
        for (JWTTokenExpiry c: values()) {
            CONSTANTS.put(c.value, c);
        }
    }

    JWTTokenExpiry(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return this.value;
    }

    @JsonValue
    public String value() {
        return this.value;
    }

    @JsonCreator
    public static JWTTokenExpiry fromValue(String value) {
        JWTTokenExpiry constant = CONSTANTS.get(value);
        if (constant == null) {
            throw new IllegalArgumentException(value);
        } else {
            return constant;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy