Package org.jclouds.rest
Interface MapBinder
-
- All Superinterfaces:
Binder
- All Known Implementing Classes:
BindMapToStringPayload,BindToJsonPayload,BindToJsonPayloadWrappedWith
public interface MapBinder extends Binder
Builds the payload of a Post request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <R extends HttpRequest>
RbindToRequest(R request, Map<String,Object> postParams)creates and binds the POST payload to the request using parameters specified.-
Methods inherited from interface org.jclouds.rest.Binder
bindToRequest
-
-
-
-
Method Detail
-
bindToRequest
<R extends HttpRequest> R bindToRequest(R request, Map<String,Object> postParams)
creates and binds the POST payload to the request using parameters specified.- See Also:
PayloadParam
-
-