001package com.nimbusds.openid.connect.sdk.claims;
002
003
004/**
005 * Enumeration of the claim requirement types.
006 *
007 * <p>Related specifications:
008 *
009 * <ul>
010 *     <li>OpenID Connect Core 1.0, section 5.5.1.
011 * </ul>
012 */
013public enum ClaimRequirement {
014
015
016        /**
017         * Essential claim.
018         */
019        ESSENTIAL,
020
021
022        /**
023         * Voluntary claim.
024         */
025        VOLUNTARY
026}