Class: SAML2::Endpoint
Direct Known Subclasses
Defined Under Namespace
Classes: Indexed
Instance Attribute Summary collapse
-
#binding ⇒ Object
readonly
Returns the value of attribute binding.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Attributes inherited from Base
Instance Method Summary collapse
- #==(rhs) ⇒ Object
- #build(builder, element) ⇒ Object
- #from_xml(node) ⇒ Object
-
#initialize(location = nil, binding = Bindings::HTTP_POST::URN) ⇒ Endpoint
constructor
A new instance of Endpoint.
Methods inherited from Base
from_xml, #inspect, load_object_array, load_string_array, lookup_qname, #to_s, #to_xml
Constructor Details
Instance Attribute Details
#binding ⇒ Object (readonly)
Returns the value of attribute binding.
5 6 7 |
# File 'lib/saml2/endpoint.rb', line 5 def binding @binding end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
5 6 7 |
# File 'lib/saml2/endpoint.rb', line 5 def location @location end |
Instance Method Details
#==(rhs) ⇒ Object
11 12 13 |
# File 'lib/saml2/endpoint.rb', line 11 def ==(rhs) location == rhs.location && binding == rhs.binding end |
#build(builder, element) ⇒ Object
21 22 23 |
# File 'lib/saml2/endpoint.rb', line 21 def build(builder, element) builder['md'].__send__(element, 'Location' => location, 'Binding' => binding) end |
#from_xml(node) ⇒ Object
15 16 17 18 19 |
# File 'lib/saml2/endpoint.rb', line 15 def from_xml(node) super @location = node['Location'] @binding = node['Binding'] end |