001package com.nimbusds.oauth2.sdk.token;
002
003
004/**
005 * Enumeration of the possible token encodings.
006 */
007public enum TokenEncoding {
008
009
010        /**
011         * Opaque secure identifier.
012         */
013        IDENTIFIER,
014
015
016        /**
017         * Self-contained, the authorisation is encoded (e.g. as JWT).
018         */
019        SELF_CONTAINED
020}