In: |
wsdl/binding.rb
|
Parent: | Info |
name | [R] | |
operations | [R] | |
soapbinding | [R] | |
type | [R] |
# File wsdl/binding.rb, line 22 def initialize super @name = nil @type = nil @operations = XSD::NamedElements.new @soapbinding = nil end
# File wsdl/binding.rb, line 52 def parse_attr(attr, value) case attr when NameAttrName @name = XSD::QName.new(targetnamespace, value) when TypeAttrName @type = value else nil end end
# File wsdl/binding.rb, line 34 def parse_element(element) case element when OperationName o = OperationBinding.new @operations << o o when SOAPBindingName o = WSDL::SOAP::Binding.new @soapbinding = o o when DocumentationName o = Documentation.new o else nil end end