Skip to content

Instantly share code, notes, and snippets.

Created August 30, 2014 15:01
Show Gist options
  • Save anonymous/f713fd84a1618b04c04a to your computer and use it in GitHub Desktop.
Save anonymous/f713fd84a1618b04c04a to your computer and use it in GitHub Desktop.
Access token java class
package com.blabadi.sec.oauth.entities;
public class AccessToken {
private String token_id;
private byte[] token;
private String authentication_id;
private String user_name;
private String client_id;
private byte[] authentication;
private String refresh_token;
public String getToken_id() {
return token_id;
}
public void setToken_id(String token_id) {
this.token_id = token_id;
}
public byte[] getToken() {
return token;
}
public void setToken(byte[] token) {
this.token = token;
}
public String getAuthentication_id() {
return authentication_id;
}
public void setAuthentication_id(String authentication_id) {
this.authentication_id = authentication_id;
}
public String getUser_name() {
return user_name;
}
public void setUser_name(String user_name) {
this.user_name = user_name;
}
public String getClient_id() {
return client_id;
}
public void setClient_id(String client_id) {
this.client_id = client_id;
}
public byte[] getAuthentication() {
return authentication;
}
public void setAuthentication(byte[] authentication) {
this.authentication = authentication;
}
public String getRefresh_token() {
return refresh_token;
}
public void setRefresh_token(String refresh_token) {
this.refresh_token = refresh_token;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment