Advertisement
Guest User

Untitled

a guest
Jan 24th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1.  
  2. /**
  3. * Created by freakycoder on 21/01/16.
  4. */
  5. public class MyTaskParams {
  6. String method;
  7. String username;
  8. String password;
  9. String email;
  10. String gender;
  11. int age;
  12. String country;
  13. int daily_goal;
  14. String user_login;
  15.  
  16. public MyTaskParams(String method, String username, String password, String email, String gender, int age, String country, int daily_goal) {
  17. this.method = method;
  18. this.username = username;
  19. this.password = password;
  20. this.email = email;
  21. this.gender = gender;
  22. this.age = age;
  23. this.country = country;
  24. this.daily_goal = daily_goal;
  25. }
  26.  
  27. public MyTaskParams(String method,String user_login, String password){
  28. this.method = method;
  29. this.user_login = user_login;
  30. this.password = password;
  31. }
  32.  
  33.  
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement