Advertisement
Guest User

Untitled

a guest
Jun 6th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public User(String name, String email, String username, String password, String timeZone) {
  2. this.name = name;
  3. this.email = email;
  4. this.username = username;
  5. this.shift = (int) (Math.random() * 26);
  6. this.password = cipher(password, shift);
  7. this.timeZone = timeZone;
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement