Class: SAML2::Endpoint
Direct Known Subclasses
Defined Under Namespace
Modules: Bindings, Encodings Classes: Indexed
Instance Attribute Summary collapse
-
#binding ⇒ Object
readonly
Returns the value of attribute binding.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Instance Method Summary collapse
- #==(rhs) ⇒ Object
- #build(builder, element) ⇒ Object
- #from_xml(node) ⇒ Object
-
#initialize(location = nil, binding = Bindings::HTTP_POST) ⇒ Endpoint
constructor
A new instance of Endpoint.
Methods inherited from Base
from_xml, 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.
12 13 14 |
# File 'lib/saml2/endpoint.rb', line 12 def binding @binding end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
12 13 14 |
# File 'lib/saml2/endpoint.rb', line 12 def location @location end |
Instance Method Details
#==(rhs) ⇒ Object
18 19 20 |
# File 'lib/saml2/endpoint.rb', line 18 def ==(rhs) location == rhs.location && binding == rhs.binding end |
#build(builder, element) ⇒ Object
27 28 29 |
# File 'lib/saml2/endpoint.rb', line 27 def build(builder, element) builder['md'].__send__(element, 'Location' => location, 'Binding' => binding) end |
#from_xml(node) ⇒ Object
22 23 24 25 |
# File 'lib/saml2/endpoint.rb', line 22 def from_xml(node) @location = node['Location'] @binding = node['Binding'] end |