com.nimbusds.jose.Requirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jose-jwt Show documentation
Show all versions of nimbus-jose-jwt Show documentation
Java library for Javascript Object Signing and Encryption (JOSE) and
JSON Web Tokens (JWT)
package com.nimbusds.jose;
/**
* Enumeration of JOSE algorithm implementation requirements. Refers to the
* requirement levels defined in RFC 2119.
*
* @author Vladimir Dzhuvinov
* @version $version$ (2012-09-17)
*/
public enum Requirement {
/**
* The implementation of the algorithm is required.
*/
REQUIRED,
/**
* The implementation of the algorithm is recommended.
*/
RECOMMENDED,
/**
* The implementation of the algorithm is optional.
*/
OPTIONAL
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy