Joomla CMS  4.2.2
Documentation des API du CMS Joomla en version 4.2.2
Référence de l'interface RegisteredClaims

Champs de données

const ALL
 
const DATE_CLAIMS
 
const AUDIENCE = 'aud'
 
const EXPIRATION_TIME = 'exp'
 
const ID = 'jti'
 
const ISSUED_AT = 'iat'
 
const ISSUER = 'iss'
 
const NOT_BEFORE = 'nbf'
 
const SUBJECT = 'sub'
 

Description détaillée

Defines the list of claims that are registered in the IANA "JSON Web Token Claims" registry

Voir également
https://tools.ietf.org/html/rfc7519#section-4.1

Documentation des champs

◆ ALL

const ALL
Valeur initiale :
= [
self::AUDIENCE,
self::EXPIRATION_TIME,
self::ID,
self::ISSUED_AT,
self::ISSUER,
self::NOT_BEFORE,
self::SUBJECT,
]

Référencé par Token\getHeaders(), et Builder\withClaim().

◆ AUDIENCE

◆ DATE_CLAIMS

const DATE_CLAIMS
Valeur initiale :
= [
self::ISSUED_AT,
self::NOT_BEFORE,
self::EXPIRATION_TIME,
]

Référencé par Parser\convertItems(), Builder\convertItems(), Factory\create(), et Token\getClaim().

◆ EXPIRATION_TIME

const EXPIRATION_TIME = 'exp'

Identifies the expiration time on or after which the JWT MUST NOT be accepted for processing

Voir également
https://tools.ietf.org/html/rfc7519#section-4.1.4

Référencé par Builder\forwardCallToCorrectClaimMethod(), et Token\isExpired().

◆ ID

const ID = 'jti'

Provides a unique identifier for the JWT

Voir également
https://tools.ietf.org/html/rfc7519#section-4.1.7

Référencé par Builder\forwardCallToCorrectClaimMethod(), et Token\isIdentifiedBy().

◆ ISSUED_AT

const ISSUED_AT = 'iat'

Identifies the time at which the JWT was issued

Voir également
https://tools.ietf.org/html/rfc7519#section-4.1.6

Référencé par Builder\forwardCallToCorrectClaimMethod(), et Token\hasBeenIssuedBefore().

◆ ISSUER

const ISSUER = 'iss'

Identifies the principal that issued the JWT

Voir également
https://tools.ietf.org/html/rfc7519#section-4.1.1

Référencé par Builder\forwardCallToCorrectClaimMethod(), et Token\hasBeenIssuedBy().

◆ NOT_BEFORE

const NOT_BEFORE = 'nbf'

Identifies the time before which the JWT MUST NOT be accepted for processing

https://tools.ietf.org/html/rfc7519#section-4.1.5

Référencé par Builder\forwardCallToCorrectClaimMethod(), et Token\isMinimumTimeBefore().

◆ SUBJECT

const SUBJECT = 'sub'

Identifies the principal that is the subject of the JWT.

https://tools.ietf.org/html/rfc7519#section-4.1.2

Référencé par Token\isRelatedTo().


La documentation de cette interface a été générée à partir du fichier suivant :