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.



38
39
40
41
42
43
# File 'lib/handsoap/parser.rb', line 38

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.



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

def binding
  @binding
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#protocolObject

Returns the value of attribute protocol.



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

def protocol
  @protocol
end

#urlObject

Returns the value of attribute url.



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

def url
  @url
end