module FrOData::Service::Response::Plain

Public Instance Methods

error_message() click to toggle source
# File lib/frodata/service/response/plain.rb, line 17
def error_message
  response.body
end
next_page() click to toggle source
# File lib/frodata/service/response/plain.rb, line 9
def next_page
  raise NotImplementedError, 'Not available'
end
next_page_url() click to toggle source
# File lib/frodata/service/response/plain.rb, line 13
def next_page_url
  raise NotImplementedError, 'Not available'
end
parse_entity(entity_data, entity_options) click to toggle source
# File lib/frodata/service/response/plain.rb, line 5
def parse_entity(entity_data, entity_options)
  raise NotImplementedError, 'Not Available'
end
parsed_body() click to toggle source
# File lib/frodata/service/response/plain.rb, line 21
def parsed_body
  response.body
end

Private Instance Methods

find_entities() click to toggle source

Find entity entries in a response set

@return [Array]

# File lib/frodata/service/response/plain.rb, line 30
def find_entities
  []
end