You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.ffii.fpsms.model;
-
- import java.time.Instant;
-
- public class RefreshToken {
-
- private String userName;
-
- private String token;
-
- private Instant expiryDate;
-
-
-
- public String getUserName() {
- return userName;
- }
-
- public void setUserName(String userName) {
- this.userName = userName;
- }
-
- public String getToken() {
- return token;
- }
-
- public void setToken(String token) {
- this.token = token;
- }
-
- public Instant getExpiryDate() {
- return expiryDate;
- }
-
- public void setExpiryDate(Instant expiryDate) {
- this.expiryDate = expiryDate;
- }
-
- }
|