Package | Description |
---|---|
nablarch.common.web.download |
ダウンロード機能を提供する。
|
nablarch.common.web.token |
トークンを使用した二重サブミットの防止機能を提供する。
|
nablarch.fw.jaxrs |
NablarchのActionハンドラをJAX-RSのリソースクラスとして呼び出す事ができる機能を提供する。
|
nablarch.fw.web |
画面オンライン処理方式の主要APIを収めたパッケージ。
|
nablarch.fw.web.handler |
画面オンライン処理方式向けフレームワーク標準ハンドラ。
|
nablarch.fw.web.handler.secure |
セキュリティに関連する機能を提供する。
|
Modifier and Type | Class and Description |
---|---|
class |
DataRecordResponse
Map型のデータレコードのリストを一定のフォーマットに従って直列化し、
その内容をレスポンスボディとするHTTPレスポンスオブジェクト。
|
class |
FileResponse
File オブジェクトからHTTPレスポンスを生成するHttpResponse 継承クラス。 |
class |
StreamResponse
ストリームからHTTPレスポンスメッセージを生成するクラス。
本クラスは、ファイルシステム上のファイルやデータベースのBLOB型のカラムに格納した
バイナリデータのダウンロードに使用する。
|
Modifier and Type | Method and Description |
---|---|
HttpResponse |
DoubleSubmissionHandler.handle(HttpRequest request,
ExecutionContext context,
Handler<HttpRequest,HttpResponse> httpRequestHandler,
OnDoubleSubmission annotation)
OnDoubleSubmissionアノテーションに対する処理を行う。
|
Modifier and Type | Method and Description |
---|---|
HttpResponse |
DoubleSubmissionHandler.handle(HttpRequest request,
ExecutionContext context,
Handler<HttpRequest,HttpResponse> httpRequestHandler,
OnDoubleSubmission annotation)
OnDoubleSubmissionアノテーションに対する処理を行う。
|
Modifier and Type | Method and Description |
---|---|
HttpResponse |
ErrorResponseBuilder.build(HttpRequest request,
ExecutionContext context,
java.lang.Throwable throwable)
|
protected HttpResponse |
JaxbBodyConverter.convertResponse(java.lang.Object response,
ExecutionContext context) |
protected abstract HttpResponse |
BodyConverterSupport.convertResponse(java.lang.Object response,
ExecutionContext context)
レスポンスを変換する。
|
HttpResponse |
BodyConverterSupport.write(java.lang.Object response,
ExecutionContext executionContext) |
Modifier and Type | Method and Description |
---|---|
void |
JaxRsErrorLogWriter.write(HttpRequest request,
HttpResponse response,
ExecutionContext context,
java.lang.Throwable throwable)
エラー情報をログに出力する。
|
protected void |
JaxRsErrorLogWriter.writeApplicationExceptionLog(HttpRequest request,
HttpResponse response,
ExecutionContext context,
ApplicationException exception)
ApplicationException の情報をログ出力する。
デフォルト実装では何も出力しない。 |
Modifier and Type | Method and Description |
---|---|
HttpResponse |
HttpResponse.addCookie(HttpCookie cookie)
サーバ側から送信されたクッキー情報を設定する。
|
HttpResponse |
HttpErrorResponse.getResponse()
レスポンス情報を取得する。
|
HttpResponse |
HttpResponse.Status.handle(HttpRequest req,
ExecutionContext ctx)
入力データに対する処理を実行する。
このクラスの実装では、以下のHTTPレスポンスメッセージに相当する
HttpResponse オブジェクトを返す。 |
HttpResponse |
HttpRequestHandler.handle(HttpRequest request,
ExecutionContext context)
HTTPリクエストに対する処理を実行する。
|
HttpResponse |
HttpResponse.setBodyStream(java.io.InputStream bodyStream)
HTTPレスポンスボディの内容を保持するストリームを設定する。
|
HttpResponse |
HttpResponse.setContentDisposition(java.lang.String fileName)
Content-Dispositionの値を設定する。
Content-Typeが明示的に設定されていない場合、
設定されたファイル名の拡張子に応じたContent-Typeを自動的に設定する。
本メソッドではattachment属性を指定するため、ダウンロード時にダイアログが必ず表示される。 |
HttpResponse |
HttpResponse.setContentDisposition(java.lang.String fileName,
boolean inline)
Content-Dispositionの値を設定する。
Content-Typeが明示的に設定されていない場合、
設定されたファイル名の拡張子に応じたContent-Typeを自動的に設定する。
inline にtrue を指定した場合、ダウンロードされたファイルは
クライアントアプリで自動的に開かれる。ただし、実際にそのような挙動となるかどうかは、クライアントの設定 およびOSのセキュリティ設定に依存する。 |
HttpResponse |
HttpResponse.setContentPath(ResourceLocator resource)
コンテンツパスを設定する。
指定した
ResourceLocator オブジェクトがnull でない場合は、
リソース名からContent-Typeを自動的に設定した後、コンテンツパスを設定する。ResourceLocator オブジェクトがnull の場合は、コンテンツパスのみ設定する。 |
HttpResponse |
HttpResponse.setContentPath(java.lang.String path)
コンテンツパスを設定する。
本処理は
HttpResponse.setContentPath(ResourceLocator) に委譲する。 |
HttpResponse |
HttpResponse.setContentType(java.lang.String contentType)
Content-Typeを設定する。
Content-Typeのデフォルト値は、"text/plain;charset=UTF-8" である。
ボディに書き込む内容をコンテンツパスで指定する場合、 Content-Typeはコンテンツパスの拡張子から自動的に決定される為、 このメソッドを明示的に使用する必要は無い。 |
HttpResponse |
HttpResponse.setCookie(HttpCookie cookie)
Deprecated.
本メソッドは、複数のクッキー情報を設定することを意図したメソッド名を持つ
HttpResponse.addCookie(HttpCookie) に置き換わりました。 |
HttpResponse |
HttpResponse.setLocation(java.lang.String location)
Locationの値を設定する。
リダイレクト時のHTTPクライアントの遷移先URIを設定する。
デフォルトでは設定されない。 |
HttpResponse |
HttpResponse.setStatusCode(int code)
HTTPレスポンスのステータスコードを設定する。
デフォルトのステータスコードは
200 である。 |
HttpResponse |
HttpResponse.write(byte[] bytes)
HTTPレスポンスボディにバイト配列を書き込む。
このメソッドで書き込まれたデータは、本オブジェクトが保持する
バッファに保持され、クライアントソケットに対する書き込みは一切発生しない。
(このライタに対するflush()は単に無視される。)
実際にソケットに対するレスポンス処理が行われるのは、 nablarch.fw.web.handler.HttpResponseHandler にレスポンスオブジェクトが戻された後である。
また、このオブジェクトにコンテンツパスが設定されている場合、
このライタに書き込まれた内容は単に無視される。 |
HttpResponse |
HttpResponse.write(java.nio.ByteBuffer bytes)
HTTPレスポンスボディにバイト配列を書き込む。
このメソッドで書き込まれたデータは、本オブジェクトが保持する
バッファに保持され、クライアントソケットに対する書き込みは一切発生しない。
(このライタに対するflush()は単に無視される。)
実際にソケットに対するレスポンス処理が行われるのは、 nablarch.fw.web.handler.HttpResponseHandler にレスポンスオブジェクトが戻された後である。
また、このオブジェクトにコンテンツパスが設定されている場合、
このライタに書き込まれた内容は単に無視される。 |
HttpResponse |
HttpResponse.write(java.lang.CharSequence text)
HTTPレスポンスボディに文字列を書き込む。
このメソッドで書き込まれたデータは、本オブジェクトが保持する
バッファに保持され、クライアントソケットに対する書き込みは一切発生しない。
(このライタに対するflush()は単に無視される。)
実際にソケットに対するレスポンス処理が行われるのは、 nablarch.fw.web.handler.HttpResponseHandler にレスポンスオブジェクトが戻された後である。
また、このオブジェクトにコンテンツパスが設定されている場合、
このライタに書き込まれた内容は単に無視される。 |
Modifier and Type | Method and Description |
---|---|
HttpErrorResponse |
HttpErrorResponse.setResponse(HttpResponse response)
レスポンス情報を設定する。
|
Constructor and Description |
---|
HttpErrorResponse(HttpResponse response)
指定された
HttpResponse を持つHttpErrorResponse を生成する。 |
HttpErrorResponse(HttpResponse response,
java.lang.Throwable e)
指定された
HttpResponse と例外を持つHttpErrorResponse を生成する。 |
Modifier and Type | Method and Description |
---|---|
void |
ContentPathRewriteRule.applyRewrittenPath(java.lang.String rewrittenPath,
HttpResponse response) |
protected java.lang.Object |
ContentPathRewriteRule.getParam(java.lang.String type,
java.lang.String name,
HttpResponse response,
ExecutionContext context) |
java.lang.String |
ContentPathRewriteRule.getPathToRewrite(HttpResponse response) |
Modifier and Type | Method and Description |
---|---|
boolean |
SecureResponseHeader.isOutput(HttpResponse response,
ServletExecutionContext context)
このヘッダを出力するか否かを返す。
|