Class: WSDL::Reader::PortTypes
- Defined in:
- lib/wsdl-reader/port_type.rb
Instance Method Summary collapse
-
#lookup_operation_message(type, operation, messages) ⇒ Object
TODO: lookup_message_by_operation.
- #lookup_operations_by_message(type, message) ⇒ Object
Methods inherited from Hash
Instance Method Details
#lookup_operation_message(type, operation, messages) ⇒ Object
TODO: lookup_message_by_operation
4 5 6 7 8 9 |
# File 'lib/wsdl-reader/port_type.rb', line 4 def (type, operation, ) # TODO: lookup_message_by_operation each do |_, port_type| = port_type. type, operation, return if end end |
#lookup_operations_by_message(type, message) ⇒ Object
11 12 13 14 15 |
# File 'lib/wsdl-reader/port_type.rb', line 11 def (type, ) inject([]) do |array, (_, port_type)| array + port_type.(type, ) end end |