Class: Handsoap::Parser::Endpoint

Inherits:
Object
  • Object
show all
Defined in:
lib/handsoap/parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, protocol, binding, url) ⇒ Endpoint

Returns a new instance of Endpoint.



36
37
38
39
40
41
# File 'lib/handsoap/parser.rb', line 36

def initialize(name, protocol, binding, url)
  @name = name
  @protocol = protocol
  @binding = binding
  @url = url
end

Instance Attribute Details

#bindingObject

Returns the value of attribute binding.



34
35
36
# File 'lib/handsoap/parser.rb', line 34

def binding
  @binding
end

#nameObject

Returns the value of attribute name.



34
35
36
# File 'lib/handsoap/parser.rb', line 34

def name
  @name
end

#protocolObject

Returns the value of attribute protocol.



34
35
36
# File 'lib/handsoap/parser.rb', line 34

def protocol
  @protocol
end

#urlObject

Returns the value of attribute url.



34
35
36
# File 'lib/handsoap/parser.rb', line 34

def url
  @url
end