Specify the Body Template to use. Can contain literals and expressions. @param bodyTemplate to use. @return a RequestTemplate for chaining.
(String bodyTemplate)
| 961 | * @return a RequestTemplate for chaining. |
| 962 | */ |
| 963 | public RequestTemplate bodyTemplate(String bodyTemplate) { |
| 964 | this.bodyTemplate = BodyTemplate.create(bodyTemplate, this.charset); |
| 965 | return this; |
| 966 | } |
| 967 | |
| 968 | /** |
| 969 | * Specify the Body Template to use. Can contain literals and expressions. |