Class: WSDL::SOAP::Operation::OperationInfo
- Inherits:
-
Object
- Object
- WSDL::SOAP::Operation::OperationInfo
- Defined in:
- lib/wsdl/soap/operation.rb
Instance Attribute Summary collapse
-
#bodyparts ⇒ Object
readonly
Returns the value of attribute bodyparts.
-
#faultpart ⇒ Object
readonly
Returns the value of attribute faultpart.
-
#headerparts ⇒ Object
readonly
Returns the value of attribute headerparts.
-
#op_name ⇒ Object
readonly
Returns the value of attribute op_name.
-
#optype_name ⇒ Object
readonly
Returns the value of attribute optype_name.
-
#soapaction ⇒ Object
readonly
Returns the value of attribute soapaction.
-
#style ⇒ Object
readonly
Returns the value of attribute style.
Instance Method Summary collapse
-
#initialize(style, op_name, optype_name, headerparts, bodyparts, faultpart, soapaction) ⇒ OperationInfo
constructor
A new instance of OperationInfo.
Constructor Details
#initialize(style, op_name, optype_name, headerparts, bodyparts, faultpart, soapaction) ⇒ OperationInfo
Returns a new instance of OperationInfo.
26 27 28 29 30 31 32 33 34 |
# File 'lib/wsdl/soap/operation.rb', line 26 def initialize(style, op_name, optype_name, headerparts, bodyparts, faultpart, soapaction) @style = style @op_name = op_name @optype_name = optype_name @headerparts = headerparts @bodyparts = bodyparts @faultpart = faultpart @soapaction = soapaction end |
Instance Attribute Details
#bodyparts ⇒ Object (readonly)
Returns the value of attribute bodyparts
22 23 24 |
# File 'lib/wsdl/soap/operation.rb', line 22 def bodyparts @bodyparts end |
#faultpart ⇒ Object (readonly)
Returns the value of attribute faultpart
23 24 25 |
# File 'lib/wsdl/soap/operation.rb', line 23 def faultpart @faultpart end |
#headerparts ⇒ Object (readonly)
Returns the value of attribute headerparts
21 22 23 |
# File 'lib/wsdl/soap/operation.rb', line 21 def headerparts @headerparts end |
#op_name ⇒ Object (readonly)
Returns the value of attribute op_name
19 20 21 |
# File 'lib/wsdl/soap/operation.rb', line 19 def op_name @op_name end |
#optype_name ⇒ Object (readonly)
Returns the value of attribute optype_name
20 21 22 |
# File 'lib/wsdl/soap/operation.rb', line 20 def optype_name @optype_name end |
#soapaction ⇒ Object (readonly)
Returns the value of attribute soapaction
24 25 26 |
# File 'lib/wsdl/soap/operation.rb', line 24 def soapaction @soapaction end |
#style ⇒ Object (readonly)
Returns the value of attribute style
18 19 20 |
# File 'lib/wsdl/soap/operation.rb', line 18 def style @style end |