Project

General

Profile

1
package eu.dnetlib.openaire.usermanagement;
2

    
3
import java.io.Serializable;
4

    
5
public class ServiceResponse implements Serializable {
6
    String client_id;
7
    Long client_id_issued_at;
8
    String client_secret;
9
    Long client_secret_expires_at;
10
    String registration_access_token;
11
    String registration_client_uri;
12
    String[] redirect_uris;
13
    String client_name;
14
    String logo_uri;
15
    String policy_uri;
16
    String[] contacts;
17
    String[] grant_types;
18
    String token_endpoint_auth_method;
19
    String token_endpoint_auth_signing_alg;
20
    String scope;
21
    String jwks_uri;
22
    Jwks jwks;
23

    
24

    
25
    public String getClientId() {
26
        return client_id;
27
    }
28

    
29
    public Long getClientIdIssuedAt() {
30
        return client_id_issued_at;
31
    }
32

    
33
    public String getClientSecret() {
34
        return client_secret;
35
    }
36

    
37
    public Long getClientSecretExpiresAt() {
38
        return client_secret_expires_at;
39
    }
40

    
41
    public String getRegistrationAccessToken() {
42
        return registration_access_token;
43
    }
44

    
45
    public String getRegistrationClientUri() {
46
        return registration_client_uri;
47
    }
48

    
49
    public String[] getRedirectUris() {
50
        return redirect_uris;
51
    }
52

    
53
    public String getClientName() {
54
        return client_name;
55
    }
56

    
57

    
58
    public String getLogoUri() {
59
        return logo_uri;
60
    }
61

    
62
    public String getPolicyUri() {
63
        return policy_uri;
64
    }
65

    
66
    public String[] getContacts() {
67
        return contacts;
68
    }
69

    
70
    public String[] getGrantTypes() {
71
        return grant_types;
72
    }
73

    
74
    public String getTokenEndpointAuthMethod() {
75
        return token_endpoint_auth_method;
76
    }
77

    
78
    public String getTokenEndpointAuthSigningAlg() {
79
        return token_endpoint_auth_signing_alg;
80
    }
81

    
82
    public String getScope() {
83
        return scope;
84
    }
85

    
86
    public String getJwksUri() {
87
        return jwks_uri;
88
    }
89

    
90
    public Jwks getJwks() {
91
        return jwks;
92
    }
93
}
(16-16/18)