C - 特定の JwtDecoder の作成に使用されるコンテキスト情報を提供する型。@FunctionalInterface
public interface JwtDecoderFactory<C>JwtDecoder のファクトリ。このファクトリには、特定の JwtDecoder を作成するために使用されるコンテキスト情報を提供する型を提供する必要があります。JwtDecoder| 修飾子と型 | メソッドと説明 |
|---|---|
JwtDecoder | createDecoder(C context) 指定された「コンテキスト」型を使用して JwtDecoder を作成します。 |
JwtDecoder createDecoder(C context)
JwtDecoder を作成します。context - コンテキスト情報を提供する型 JwtDecoder