class Protocol::HTTP::Body::Wrapper
def self.wrap(message)
@parameter message [Request | Response] the message to wrap.
Wrap the body of the given message in a new instance of this class.
def self.wrap(message) if body = message.body message.body = self.new(body) end end