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,

Parameters:
  • 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

Returns:
  • (String) -
def inspect
  "#<SAML2::Endpoint::Indexed #{endpoint_inspect} #{indexed_object_inspect}>"
end