Class: Handsoap::Parser::Endpoint
- Inherits:
-
Object
- Object
- Handsoap::Parser::Endpoint
- Defined in:
- lib/handsoap/parser.rb
Instance Attribute Summary collapse
-
#binding ⇒ Object
Returns the value of attribute binding.
-
#name ⇒ Object
Returns the value of attribute name.
-
#protocol ⇒ Object
Returns the value of attribute protocol.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(name, protocol, binding, url) ⇒ Endpoint
constructor
A new instance of Endpoint.
Constructor Details
#initialize(name, protocol, binding, url) ⇒ Endpoint
Returns a new instance of Endpoint.
39 40 41 42 43 44 |
# File 'lib/handsoap/parser.rb', line 39 def initialize(name, protocol, binding, url) @name = name @protocol = protocol @binding = binding @url = url end |
Instance Attribute Details
#binding ⇒ Object
Returns the value of attribute binding.
37 38 39 |
# File 'lib/handsoap/parser.rb', line 37 def binding @binding end |
#name ⇒ Object
Returns the value of attribute name.
37 38 39 |
# File 'lib/handsoap/parser.rb', line 37 def name @name end |
#protocol ⇒ Object
Returns the value of attribute protocol.
37 38 39 |
# File 'lib/handsoap/parser.rb', line 37 def protocol @protocol end |
#url ⇒ Object
Returns the value of attribute url.
37 38 39 |
# File 'lib/handsoap/parser.rb', line 37 def url @url end |