net.tokensmith.jwt.entity.jwk.Use Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwt Show documentation
Show all versions of jwt Show documentation
Java Implementation of JSON Web Tokens
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;
}
}