module Setsuzoku::Service::WebService::Credentials::BasicAuthCredential

Public Class Methods

stub_credential() click to toggle source
# File lib/setsuzoku/service/web_service/credentials/basic_auth_credential.rb, line 44
def self.stub_credential
  s = Struct.new(:auth_strategy, :status, :settings, :username, :password)
  s.new(nil, 'active', {}, 'stubbed_username', 'stubbed_password')
end

Public Instance Methods

password() click to toggle source
# File lib/setsuzoku/service/web_service/credentials/basic_auth_credential.rb, line 31
def password; end
password=(val) click to toggle source
# File lib/setsuzoku/service/web_service/credentials/basic_auth_credential.rb, line 38
def password=(val); end
username() click to toggle source
# File lib/setsuzoku/service/web_service/credentials/basic_auth_credential.rb, line 18
def username; end
username=(val) click to toggle source
# File lib/setsuzoku/service/web_service/credentials/basic_auth_credential.rb, line 25
def username=(val); end