Uses of Class
com.monoserv.http.HttpBody

Packages that use HttpBody
com.monoserv.http   
 

Uses of HttpBody in com.monoserv.http
 

Methods in com.monoserv.http that return HttpBody
 HttpBody HttpResponse.getMessageBody()
          Returns the object for the internal message body object.
 HttpBody HttpResponse.getMessageBody()
          Returns the object for the internal message body object.
static HttpBody HttpBody.make(byte[] data)
          Creates a base HttpBody object with the supplied data as a byte array in the body.
static HttpBody HttpBody.make(byte[] data)
          Creates a base HttpBody object with the supplied data as a byte array in the body.
static HttpBody HttpBody.make(java.lang.String data)
          Creates a base HttpBody object with the supplied data as a byte array in the body.
static HttpBody HttpBody.make(java.lang.String data)
          Creates a base HttpBody object with the supplied data as a byte array in the body.
static HttpBody HttpBody.makeBlank()
          Creates a base HttpBody object with nothing for the body content.
static HttpBody HttpBody.makeBlank()
          Creates a base HttpBody object with nothing for the body content.
 

Methods in com.monoserv.http with parameters of type HttpBody
 void HttpResponse.setMessageBody(HttpBody theBody)
          Stores the body contents per the data passed in.
 void HttpResponse.setMessageBody(HttpBody theBody)
          Stores the body contents per the data passed in.