インターフェース PublicKeyCredentialCreationOptionsRepository
public interface PublicKeyCredentialCreationOptionsRepository
アサーションを生成するリクエストとアサーションの検証の間の
PublicKeyCredentialCreationOptions
を節約します。- 導入:
- 6.4
メソッドのサマリー
修飾子と型メソッド説明load
(jakarta.servlet.http.HttpServletRequest request) 保存されたPublicKeyCredentialCreationOptions
が存在する場合はそれを取得し、存在しない場合は null を取得します。void
save
(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, PublicKeyCredentialCreationOptions options) 提供されたPublicKeyCredentialCreationOptions
を保存するか、options
が null の場合は既存のPublicKeyCredentialCreationOptions
をクリアします。
メソッドの詳細
save
void save(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, PublicKeyCredentialCreationOptions options) 提供されたPublicKeyCredentialCreationOptions
を保存するか、options
が null の場合は既存のPublicKeyCredentialCreationOptions
をクリアします。- パラメーター:
request
-HttpServletRequest
response
-HttpServletResponse
options
- 保存するPublicKeyCredentialCreationOptions
、または既存のPublicKeyCredentialCreationOptions
を削除する場合は null。
load
保存されたPublicKeyCredentialCreationOptions
が存在する場合はそれを取得し、存在しない場合は null を取得します。- パラメーター:
request
-HttpServletRequest
- 戻り値:
- 保存された
PublicKeyCredentialCreationOptions
、それ以外の場合は null。