Advertisement
Guest User

Untitled

a guest
Sep 11th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. /**
  2. * Created by Admin on 11.09.2017.
  3. */
  4.  
  5. public class TokrenRequest {
  6.  
  7. private String username;
  8. private String password;
  9. private String grant_type;
  10. private String client_id;
  11. private String client_secret;
  12.  
  13. public String getGrant_type(){
  14. return grant_type;
  15. }
  16.  
  17. public void setGrant_type(String grant_type){
  18. this.grant_type = grant_type;
  19. }
  20.  
  21. public String getUsername(){
  22. return username;
  23. }
  24.  
  25. public void setUsername(String username){
  26. this.username = username;
  27. }
  28.  
  29. public String getPassword(){
  30. return password;
  31. }
  32.  
  33. public void setPassword(String password){
  34. this.password = password;
  35. }
  36.  
  37. public String getClient_id(){
  38. return client_id;
  39. }
  40.  
  41. public void setClient_id(String client_id){
  42. this.client_id = client_id;
  43. }
  44.  
  45. public String getClient_secret(){
  46. return client_secret;
  47. }
  48.  
  49. public void setClient_secret(String client_secret){
  50. this.client_secret = client_secret;
  51. }
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement