Sha256: f5efab3187334225f43795049464990becdcc65161d6663933e6fe877e930a1c
Contents?: true
Size: 1.23 KB
Versions: 3
Compression:
Stored size: 1.23 KB
Contents
module ActionWebService # :nodoc: module Protocol # :nodoc: module Discovery # :nodoc: def self.included(base) base.extend(ClassMethods) base.send(:include, ActionWebService::Protocol::Discovery::InstanceMethods) end module ClassMethods # :nodoc: def register_protocol(klass) write_inheritable_array("web_service_protocols", [klass]) end end module InstanceMethods # :nodoc: private def discover_web_service_request(ap_request) (self.class.read_inheritable_attribute("web_service_protocols") || []).each do |protocol| protocol = protocol.new request = protocol.unmarshal_request(ap_request) return request unless request.nil? end nil end def create_web_service_client(api, protocol_name, endpoint_uri, options) (self.class.read_inheritable_attribute("web_service_protocols") || []).each do |protocol| protocol = protocol.new client = protocol.protocol_client(api, protocol_name, endpoint_uri, options) return client unless client.nil? end nil end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems