class Almodovar::AuthContext

Attributes

domain[RW]
password[RW]
username[RW]

Public Class Methods

new(username, password, domain) click to toggle source
# File lib/almodovar/http_client.rb, line 105
def initialize(username, password, domain)
  @username = username
  @password = password
  @domain = domain
end

Public Instance Methods

differs_from?(other) click to toggle source
# File lib/almodovar/http_client.rb, line 111
def differs_from?(other)
  return true if other.nil?
  (username != other.username) || (password != other.password) || (domain != other.domain)
end