Class: LolSoap::WSDL::Operation

Inherits:
Object
  • Object
show all
Defined in:
lib/lolsoap/wsdl/operation.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(wsdl, name, action, input, output) ⇒ Operation

Returns a new instance of Operation.



5
6
7
8
9
10
11
# File 'lib/lolsoap/wsdl/operation.rb', line 5

def initialize(wsdl, name, action, input, output)
  @wsdl   = wsdl
  @name   = name
  @action = action
  @input  = input
  @output = output
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



3
4
5
# File 'lib/lolsoap/wsdl/operation.rb', line 3

def action
  @action
end

#inputObject (readonly)

Returns the value of attribute input.



3
4
5
# File 'lib/lolsoap/wsdl/operation.rb', line 3

def input
  @input
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/lolsoap/wsdl/operation.rb', line 3

def name
  @name
end

#outputObject (readonly)

Returns the value of attribute output.



3
4
5
# File 'lib/lolsoap/wsdl/operation.rb', line 3

def output
  @output
end

#wsdlObject (readonly)

Returns the value of attribute wsdl.



3
4
5
# File 'lib/lolsoap/wsdl/operation.rb', line 3

def wsdl
  @wsdl
end

Instance Method Details

#inspectObject



13
14
15
16
17
18
# File 'lib/lolsoap/wsdl/operation.rb', line 13

def inspect
  "<#{self.class} " \
  "name=#{name.inspect} " \
  "action=#{action.inspect} " \
  "input=#{input.inspect}>"
end