class Reactor::ResponseHandler::Base
Common base class to handle a xml response. Provides helper methods to extract the content from a xml response.
Attributes
context[RW]
response[RW]
Public Instance Methods
get(response, context)
click to toggle source
Common strategy method for each sub class.
# File lib/reactor/tools/response_handler/base.rb, line 13 def get(response, context) @response = response @context = context end