Class: Adamantite::Base::PasswordObject

Inherits:
Object
  • Object
show all
Defined in:
lib/base/password_object.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(website_title = nil, username = nil, password = nil, password_confirmation = nil, row_index = nil, initial_dir_name = nil) ⇒ PasswordObject

Returns a new instance of PasswordObject.



9
10
11
12
13
14
15
16
17
# File 'lib/base/password_object.rb', line 9

def initialize(website_title = nil, username = nil, password = nil,
               password_confirmation = nil, row_index = nil, initial_dir_name = nil)
  @website_title = website_title
  @username = username
  @password = password
  @password_confirmation = password_confirmation
  @row_index = row_index
  @initial_dir_name = initial_dir_name
end

Instance Attribute Details

#dir_nameObject

Returns the value of attribute dir_name.



6
7
8
# File 'lib/base/password_object.rb', line 6

def dir_name
  @dir_name
end

#initial_dir_nameObject

Returns the value of attribute initial_dir_name.



6
7
8
# File 'lib/base/password_object.rb', line 6

def initial_dir_name
  @initial_dir_name
end

#passwordObject

Returns the value of attribute password.



6
7
8
# File 'lib/base/password_object.rb', line 6

def password
  @password
end

#password_confirmationObject

Returns the value of attribute password_confirmation.



6
7
8
# File 'lib/base/password_object.rb', line 6

def password_confirmation
  @password_confirmation
end

#row_indexObject

Returns the value of attribute row_index.



6
7
8
# File 'lib/base/password_object.rb', line 6

def row_index
  @row_index
end

#usernameObject

Returns the value of attribute username.



6
7
8
# File 'lib/base/password_object.rb', line 6

def username
  @username
end

#website_titleObject

Returns the value of attribute website_title.



6
7
8
# File 'lib/base/password_object.rb', line 6

def website_title
  @website_title
end