class SAML2::Endpoint::Indexed
def eql?(other)
def eql?(other) location == other.location && binding == other.binding && response_location == other.response_location && super end
def initialize(location = nil,
-
response_location(String, nil) -- -
binding(String) -- -
is_default(true, false, nil) -- -
index(Integer) -- -
location(String) --
def initialize(location = nil, index = nil, is_default = nil, binding = Bindings::HTTP_POST::URN, response_location = nil) super(location, binding, response_location) @index = index @is_default = is_default end
def inspect
-
(String)-
def inspect "#<SAML2::Endpoint::Indexed #{endpoint_inspect} #{indexed_object_inspect}>" end