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

net.tokensmith.jwt.entity.jwk.Use Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package net.tokensmith.jwt.entity.jwk;

/**
 * Created by tommackenzie on 11/5/15.
 */
public enum Use {
    SIGNATURE("sig"),
    ENCRYPTION("enc");

    private String value;

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

    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy