Sha256: f15779653b96422590bd56149bee3e15e3d4a017cc21870a71bd0e6cbeb054de

Contents?: true

Size: 672 Bytes

Versions: 4

Compression:

Stored size: 672 Bytes

Contents

module OData4
  class Service
    class Response
      module Plain
        def parse_entity(entity_data, entity_options)
          raise NotImplementedError, 'Not Available'
        end

        def next_page
          raise NotImplementedError, 'Not available'
        end

        def next_page_url
          raise NotImplementedError, 'Not available'
        end

        def error_message
          response.body
        end

        def parsed_body
          response.body
        end

        private

        # Find entity entries in a response set
        #
        # @return [Array]
        def find_entities
          []
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
odata4-0.9.1 lib/odata4/service/response/plain.rb
odata4-0.9.0 lib/odata4/service/response/plain.rb
odata4-0.8.2 lib/odata4/service/response/plain.rb
odata4-0.8.1 lib/odata4/service/response/plain.rb