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

org.dhatim.dropwizard.jwt.cookie.authentication.SameSite Maven / Gradle / Ivy

There is a newer version: 5.1.3
Show newest version
package org.dhatim.dropwizard.jwt.cookie.authentication;

public enum SameSite {

    NONE("None"), LAX("Lax"), STRICT("Strict");

    public final String value;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy