Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public class PasswordStore {
  2. private String Key;
  3. private char[] passwd;
  4. private Date Updated;
  5.  
  6. public String getKey() {
  7. return Key;
  8. }
  9.  
  10. public void setKey(String Key) {
  11. this.Key = Key;
  12. }
  13.  
  14. public char[] getPasswd() {
  15. return passwd;
  16. }
  17.  
  18. public void setPasswd(char[] passwd) {
  19. this.passwd = passwd;
  20. }
  21.  
  22. public Date getUpdated() {
  23. return Updated;
  24. }
  25.  
  26. public void setUpdated(Date Updated) {
  27. this.Updated = Updated;
  28. }
  29.  
  30. private List<PasswordStore> passwords;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement