Class: AccountInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/quartz_flow/authentication.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(login = nil, password_hash = nil, salt = nil) ⇒ AccountInfo

Returns a new instance of AccountInfo.



6
7
8
9
10
# File 'lib/quartz_flow/authentication.rb', line 6

def initialize( = nil, password_hash = nil, salt = nil)
  @login = 
  @password_hash = password_hash
  @salt = salt
end

Instance Attribute Details

#loginObject

Returns the value of attribute login.



11
12
13
# File 'lib/quartz_flow/authentication.rb', line 11

def 
  @login
end

#password_hashObject

Returns the value of attribute password_hash.



12
13
14
# File 'lib/quartz_flow/authentication.rb', line 12

def password_hash
  @password_hash
end

#saltObject

Returns the value of attribute salt.



13
14
15
# File 'lib/quartz_flow/authentication.rb', line 13

def salt
  @salt
end