Class: Sekken::WSDL::PortType

Inherits:
Object
  • Object
show all
Defined in:
lib/sekken/wsdl/port_type.rb

Instance Method Summary collapse

Constructor Details

#initialize(port_type_node) ⇒ PortType

Returns a new instance of PortType.



7
8
9
# File 'lib/sekken/wsdl/port_type.rb', line 7

def initialize(port_type_node)
  @port_type_node = port_type_node
end

Instance Method Details

#nameObject



11
12
13
# File 'lib/sekken/wsdl/port_type.rb', line 11

def name
  @port_type_node['name']
end

#operationsObject



15
16
17
# File 'lib/sekken/wsdl/port_type.rb', line 15

def operations
  @operations ||= operations!
end