@Published(tag="architect") public class JaxbBodyConverter extends BodyConverterSupport
BodyConverter
実装クラス。BodyConverterSupport.ContentType
コンストラクタと説明 |
---|
JaxbBodyConverter() |
修飾子とタイプ | メソッドと説明 |
---|---|
protected void |
configure(javax.xml.bind.Marshaller marshaller)
Marshaller に対するオプション設定を行う。 |
protected void |
configure(javax.xml.bind.Unmarshaller unmarshaller)
Unmarshaller に対するオプション設定を行う。 |
protected java.lang.Object |
convertRequest(HttpRequest request,
ExecutionContext context)
リクエストを変換する。
|
protected HttpResponse |
convertResponse(java.lang.Object response,
ExecutionContext context)
レスポンスを変換する。
|
boolean |
isConvertible(java.lang.String mediaType)
指定されたメディアタイプを変換できるかどうか。
|
getContentType, read, setDefaultEncoding, write
protected java.lang.Object convertRequest(HttpRequest request, ExecutionContext context)
BodyConverterSupport
convertRequest
クラス内 BodyConverterSupport
request
- リクエストcontext
- 実行コンテキストprotected HttpResponse convertResponse(java.lang.Object response, ExecutionContext context)
BodyConverterSupport
convertResponse
クラス内 BodyConverterSupport
response
- レスポンスオブジェクトcontext
- 実行コンテキストpublic boolean isConvertible(java.lang.String mediaType)
BodyConverter
mediaType
- メディアタイプtrue
protected void configure(javax.xml.bind.Marshaller marshaller) throws javax.xml.bind.JAXBException
Marshaller
に対するオプション設定を行う。
このクラスではデフォルトで以下の設定でXMLの生成を行う。
設定を変更したい場合はサブクラス側で行う必要がある。
Produces
に設定された文字コードを使用する。marshaller
- Marshaller
javax.xml.bind.JAXBException
- オプション設定に失敗した場合protected void configure(javax.xml.bind.Unmarshaller unmarshaller) throws javax.xml.bind.JAXBException
Unmarshaller
に対するオプション設定を行う。
このクラスでは特に何も行わないので、オプション設定はサブクラス側で行う必要がある。unmarshaller
- Unmarshaller
javax.xml.bind.JAXBException
- オプション設定に失敗した場合