Class: Adamantite::Base::PasswordObject
- Inherits:
-
Object
- Object
- Adamantite::Base::PasswordObject
- Defined in:
- lib/base/password_object.rb
Instance Attribute Summary collapse
-
#dir_name ⇒ Object
Returns the value of attribute dir_name.
-
#initial_dir_name ⇒ Object
Returns the value of attribute initial_dir_name.
-
#password ⇒ Object
Returns the value of attribute password.
-
#password_confirmation ⇒ Object
Returns the value of attribute password_confirmation.
-
#row_index ⇒ Object
Returns the value of attribute row_index.
-
#username ⇒ Object
Returns the value of attribute username.
-
#website_title ⇒ Object
Returns the value of attribute website_title.
Instance Method Summary collapse
-
#initialize(website_title = nil, username = nil, password = nil, password_confirmation = nil, row_index = nil, initial_dir_name = nil) ⇒ PasswordObject
constructor
A new instance of PasswordObject.
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_name ⇒ Object
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_name ⇒ Object
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 |
#password ⇒ Object
Returns the value of attribute password.
6 7 8 |
# File 'lib/base/password_object.rb', line 6 def password @password end |
#password_confirmation ⇒ Object
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_index ⇒ Object
Returns the value of attribute row_index.
6 7 8 |
# File 'lib/base/password_object.rb', line 6 def row_index @row_index end |
#username ⇒ Object
Returns the value of attribute username.
6 7 8 |
# File 'lib/base/password_object.rb', line 6 def username @username end |
#website_title ⇒ Object
Returns the value of attribute website_title.
6 7 8 |
# File 'lib/base/password_object.rb', line 6 def website_title @website_title end |