mitreid-connect
静的公開変数類 | 限定公開メンバ関数 | 全メンバ一覧
org.mitre.openid.connect.view.HttpCodeView クラス
org.mitre.openid.connect.view.HttpCodeView の継承関係図
Inheritance graph
org.mitre.openid.connect.view.HttpCodeView 連携図
Collaboration graph

静的公開変数類

static final String VIEWNAME = "httpCodeView"
 
static final String CODE = "code"
 

限定公開メンバ関数

void renderMergedOutputModel (Map< String, Object > model, HttpServletRequest request, HttpServletResponse response)
 

詳解

An empty view that simply returns an HTTP code set in the model

著者
jricher

関数詳解

◆ renderMergedOutputModel()

void org.mitre.openid.connect.view.HttpCodeView.renderMergedOutputModel ( Map< String, Object >  model,
HttpServletRequest  request,
HttpServletResponse  response 
)
inlineprotected
45  {
46  HttpStatus code = (HttpStatus) model.get(CODE);
47  if (code == null) {
48  code = HttpStatus.OK; // default to 200
49  }
50 
51  response.setStatus(code.value());
52 
53  }
static final String CODE
Definition: HttpCodeView.java:42

メンバ詳解

◆ CODE

final String org.mitre.openid.connect.view.HttpCodeView.CODE = "code"
static

◆ VIEWNAME

final String org.mitre.openid.connect.view.HttpCodeView.VIEWNAME = "httpCodeView"
static

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