class Fedora::Repository

def fetch_content(object_uri)

Fetch the raw content of either a fedora object or datastream
def fetch_content(object_uri)
  response = connection.raw_get("#{url_for(object_uri)}?format=xml")
  StringResponse.new(response.body, response.content_type)
end