Class: WsdlMapper::Runtime::Message
- Inherits:
-
Object
- Object
- WsdlMapper::Runtime::Message
- Defined in:
- lib/wsdl_mapper/runtime/message.rb
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(address, action, envelope) ⇒ Message
constructor
A new instance of Message.
Constructor Details
#initialize(address, action, envelope) ⇒ Message
Returns a new instance of Message.
16 17 18 19 20 |
# File 'lib/wsdl_mapper/runtime/message.rb', line 16 def initialize(address, action, envelope) @address = address @action = action @envelope = envelope end |
Instance Attribute Details
#action ⇒ String
6 7 8 |
# File 'lib/wsdl_mapper/runtime/message.rb', line 6 def action @action end |
#address ⇒ String
6 7 8 |
# File 'lib/wsdl_mapper/runtime/message.rb', line 6 def address @address end |
#envelope ⇒ WsdlMapper::SvcDesc::Envelope
6 7 8 |
# File 'lib/wsdl_mapper/runtime/message.rb', line 6 def envelope @envelope end |