keycloak-service
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.keycloak.services.resources.account.CorsPreflightService クラス
org.keycloak.services.resources.account.CorsPreflightService 連携図
Collaboration graph

公開メンバ関数

 CorsPreflightService (HttpRequest request)
 
Response preflight ()
 

非公開変数類

HttpRequest request
 

詳解

Created by st on 21/03/17.

構築子と解体子

◆ CorsPreflightService()

org.keycloak.services.resources.account.CorsPreflightService.CorsPreflightService ( HttpRequest  request)
inline
17  {
18  this.request = request;
19  }
HttpRequest request
Definition: CorsPreflightService.java:15

関数詳解

◆ preflight()

Response org.keycloak.services.resources.account.CorsPreflightService.preflight ( )
inline

CORS preflight

戻り値
28  {
29  Cors cors = Cors.add(request, Response.ok()).auth().allowedMethods("GET", "POST", "HEAD", "OPTIONS").preflight();
30  return cors.build();
31  }
HttpRequest request
Definition: CorsPreflightService.java:15

メンバ詳解

◆ request

HttpRequest org.keycloak.services.resources.account.CorsPreflightService.request
private

このクラス詳解は次のファイルから抽出されました: