Project

General

Profile

1
package eu.dnetlib.openaire.usermanagement;
2

    
3
public class RefreshToken {
4
    private String value;
5
    private int id;
6
    private String[] scopes;
7
    private String clientId;
8
    private String userId;
9
    private String expliration;
10

    
11
    public String getValue() {
12
        return value;
13
    }
14

    
15
    public void setValue(String value) {
16
        this.value = value;
17
    }
18

    
19
    public int getId() {
20
        return id;
21
    }
22

    
23
    public void setId(int id) {
24
        this.id = id;
25
    }
26

    
27
    public String[] getScopes() {
28
        return scopes;
29
    }
30

    
31
    public void setScopes(String[] scopes) {
32
        this.scopes = scopes;
33
    }
34

    
35
    public String getClientId() {
36
        return clientId;
37
    }
38

    
39
    public void setClientId(String clientId) {
40
        this.clientId = clientId;
41
    }
42

    
43
    public String getUserId() {
44
        return userId;
45
    }
46

    
47
    public void setUserId(String userId) {
48
        this.userId = userId;
49
    }
50

    
51
    public String getExpliration() {
52
        return expliration;
53
    }
54

    
55
    public void setExpliration(String expliration) {
56
        this.expliration = expliration;
57
    }
58
}
(7-7/18)