Class: Keepass::Entry
- Inherits:
-
Object
- Object
- Keepass::Entry
- Defined in:
- ext/keepass.c,
ext/keepass.c
Overview
A class representing an entry in a Keepass database.
Instance Method Summary collapse
-
#atime ⇒ Object
Returns the last access time of this entry.
-
#ctime ⇒ Object
Returns the creation time of this entry.
-
#etime ⇒ Object
Returns the expire time of this entry.
-
#mtime ⇒ Object
Returns the modification time of this entry.
-
#name ⇒ Object
Returns the name of this entry.
-
#password ⇒ Object
Returns the password of this entry.
Instance Method Details
#atime ⇒ Object
Returns the last access time of this entry.
503 504 505 506 507 |
# File 'ext/keepass.c', line 503
VALUE
rb_kp_entry_atime(VALUE self)
{
return rb_ivar_get(self, rb_intern("@atime"));
}
|
#ctime ⇒ Object
Returns the creation time of this entry.
491 492 493 494 495 |
# File 'ext/keepass.c', line 491
VALUE
rb_kp_entry_ctime(VALUE self)
{
return rb_ivar_get(self, rb_intern("@ctime"));
}
|
#etime ⇒ Object
Returns the expire time of this entry.
515 516 517 518 519 |
# File 'ext/keepass.c', line 515
VALUE
rb_kp_entry_etime(VALUE self)
{
return rb_ivar_get(self, rb_intern("@etime"));
}
|
#mtime ⇒ Object
Returns the modification time of this entry.
479 480 481 482 483 |
# File 'ext/keepass.c', line 479
VALUE
rb_kp_entry_mtime(VALUE self)
{
return rb_ivar_get(self, rb_intern("@mtime"));
}
|
#name ⇒ Object
Returns the name of this entry.
455 456 457 458 459 |
# File 'ext/keepass.c', line 455
VALUE
rb_kp_entry_name(VALUE self)
{
return rb_ivar_get(self, rb_intern("@name"));
}
|
#password ⇒ Object
Returns the password of this entry.
467 468 469 470 471 |
# File 'ext/keepass.c', line 467
VALUE
rb_kp_entry_password(VALUE self)
{
return rb_ivar_get(self, rb_intern("@password"));
}
|