Class: WSDL::OperationBinding::OperationInfo
- Defined in:
- lib/wsdl/operationBinding.rb
Instance Attribute Summary collapse
-
#boundid ⇒ Object
readonly
Returns the value of attribute boundid.
-
#faults ⇒ Object
readonly
Returns the value of attribute faults.
-
#inputuse ⇒ Object
Returns the value of attribute inputuse.
-
#outputuse ⇒ Object
Returns the value of attribute outputuse.
-
#parts ⇒ Object
readonly
Returns the value of attribute parts.
-
#qname ⇒ Object
readonly
Returns the value of attribute qname.
-
#style ⇒ Object
readonly
Returns the value of attribute style.
Instance Method Summary collapse
-
#initialize(boundid, qname, style, inputuse, outputuse) ⇒ OperationInfo
constructor
A new instance of OperationInfo.
Constructor Details
#initialize(boundid, qname, style, inputuse, outputuse) ⇒ OperationInfo
Returns a new instance of OperationInfo.
32 33 34 35 36 37 38 39 40 |
# File 'lib/wsdl/operationBinding.rb', line 32 def initialize(boundid, qname, style, inputuse, outputuse) @boundid = boundid @qname = qname @style = style @inputuse = inputuse @outputuse = outputuse @parts = [] @faults = {} end |
Instance Attribute Details
#boundid ⇒ Object (readonly)
Returns the value of attribute boundid.
24 25 26 |
# File 'lib/wsdl/operationBinding.rb', line 24 def boundid @boundid end |
#faults ⇒ Object (readonly)
Returns the value of attribute faults.
30 31 32 |
# File 'lib/wsdl/operationBinding.rb', line 30 def faults @faults end |
#inputuse ⇒ Object
Returns the value of attribute inputuse.
27 28 29 |
# File 'lib/wsdl/operationBinding.rb', line 27 def inputuse @inputuse end |
#outputuse ⇒ Object
Returns the value of attribute outputuse.
28 29 30 |
# File 'lib/wsdl/operationBinding.rb', line 28 def outputuse @outputuse end |
#parts ⇒ Object (readonly)
Returns the value of attribute parts.
29 30 31 |
# File 'lib/wsdl/operationBinding.rb', line 29 def parts @parts end |
#qname ⇒ Object (readonly)
Returns the value of attribute qname.
25 26 27 |
# File 'lib/wsdl/operationBinding.rb', line 25 def qname @qname end |
#style ⇒ Object (readonly)
Returns the value of attribute style.
26 27 28 |
# File 'lib/wsdl/operationBinding.rb', line 26 def style @style end |