jpisani0 / Locals-Password-Manager

Locally stored and encrypted password manager
0 stars 0 forks source link

Entry Class #9

Open jpisani0 opened 1 month ago

jpisani0 commented 1 month ago

Create a class to hold read/write memory for entries in a password file.

Should have a method for returning the entry name, returning all entry data including the entry name, username, and password, changing each of these variables and deleting the entry. Other functionality will be added as necessary.

jpisani0 commented 1 month ago

Considering adding an encapsulating class so that the user can group certain entries together, probably a group or entryGroup.

jpisani0 commented 1 month ago

Considering adding an encapsulating class so that the user can group certain entries together, probably a group or entryGroup.

added the EntryGroup class, encapsulated the entries with an ArrayList and some other details of the group such as name and icon. Decided on ArrayList over a LinkedList for faster traversal, will still want to look into the benefits of each and make a final decision.