-
-
Save anonymous/71fd66dc9e58956fb3bf to your computer and use it in GitHub Desktop.
Referesh token entity for hibernate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blabadi.sec.oauth.entities; | |
public class RefreshToken { | |
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 byte[] getAuthentication() { | |
return authentication; | |
} | |
public void setAuthentication(byte[] authentication) { | |
this.authentication = authentication; | |
} | |
private String token_id; | |
private byte[] token; | |
private byte[] authentication; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment