Project

General

Profile

1
package eu.dnetlib.openaire.usermanagement;
2

    
3
public class ServiceResponse {
4
    String id;
5
    String clientId;
6
    String clientSecret;
7
    String[] redirectUris;
8
    String clientName;
9
    String clienrtUri;
10
    String logoUri;
11
    String[] contacts;
12
    String tosUri;
13
    String tokenEndpointAuthMethod;
14
    String[] scope;
15
    String grantTypes[];
16
    String responseTypes[];
17
    String policyUri;
18
    String jwksUri;
19
    Jwks jwks;
20
    String applicationType;
21
    String sectorIdentifierUri;
22
    String subjectType;
23
    String requestObjectSigningAlg;
24
    String userInfoSignedResponseAlg;
25
    String userInfoEncryptedResponseAlg;
26
    String userInfoEncryptedResponseEnc;
27
    String idTokenSignedResponseAlg;
28
    String idTokenEncryptedResponseAlg;
29
    String idTokenEncryptedResponseEnc;
30
    String tokenEndpointAuthSigningAlg;
31
    String defaultMaxAge;
32
    String requireAuthTime;
33
    String[] defaultACRvalues;
34
    String initiateLoginUri;
35
    String[] postLogoutRedirectUris;
36
    String[] requestUris;
37
    String[] authorities;
38
    int accessTokenValiditySeconds;
39
    int refreshTokenValiditySeconds;
40
    String[] resourceIds;
41
    String clientDescription;
42
    boolean reuseRefreshToken;
43
    boolean dynamicallyRegistered;
44
    boolean allowIntrospection;
45
    int idTokenValiditySeconds;
46
    String createdAt;
47
    boolean clearAccessTokensOnRefresh;
48
    String deviceCodeValiditySeconds;
49
    String[] claimsRedirectUris;
50
    String softwareStatement;
51
    String codeChallengeMethod;
52

    
53
    public String getId() {
54
        return id;
55
    }
56

    
57
    public String getClientId() {
58
        return clientId;
59
    }
60

    
61
    public String getClientSecret() {
62
        return clientSecret;
63
    }
64

    
65
    public String[] getRedirectUris() {
66
        return redirectUris;
67
    }
68

    
69
    public String getClientName() {
70
        return clientName;
71
    }
72

    
73
    public String getClienrtUri() {
74
        return clienrtUri;
75
    }
76

    
77
    public String getLogoUri() {
78
        return logoUri;
79
    }
80

    
81
    public String[] getContacts() {
82
        return contacts;
83
    }
84

    
85
    public String getTosUri() {
86
        return tosUri;
87
    }
88

    
89
    public String getTokenEndpointAuthMethod() {
90
        return tokenEndpointAuthMethod;
91
    }
92

    
93
    public String[] getScope() {
94
        return scope;
95
    }
96

    
97
    public String[] getGrantTypes() {
98
        return grantTypes;
99
    }
100

    
101
    public String[] getResponseTypes() {
102
        return responseTypes;
103
    }
104

    
105
    public String getPolicyUri() {
106
        return policyUri;
107
    }
108

    
109
    public String getJwksUri() {
110
        return jwksUri;
111
    }
112

    
113
    public Jwks getJwks() {
114
        return jwks;
115
    }
116

    
117
    public String getApplicationType() {
118
        return applicationType;
119
    }
120

    
121
    public String getSectorIdentifierUri() {
122
        return sectorIdentifierUri;
123
    }
124

    
125
    public String getSubjectType() {
126
        return subjectType;
127
    }
128

    
129
    public String getRequestObjectSigningAlg() {
130
        return requestObjectSigningAlg;
131
    }
132

    
133
    public String getUserInfoSignedResponseAlg() {
134
        return userInfoSignedResponseAlg;
135
    }
136

    
137
    public String getUserInfoEncryptedResponseAlg() {
138
        return userInfoEncryptedResponseAlg;
139
    }
140

    
141
    public String getUserInfoEncryptedResponseEnc() {
142
        return userInfoEncryptedResponseEnc;
143
    }
144

    
145
    public String getIdTokenSignedResponseAlg() {
146
        return idTokenSignedResponseAlg;
147
    }
148

    
149
    public String getIdTokenEncryptedResponseAlg() {
150
        return idTokenEncryptedResponseAlg;
151
    }
152

    
153
    public String getIdTokenEncryptedResponseEnc() {
154
        return idTokenEncryptedResponseEnc;
155
    }
156

    
157
    public String getTokenEndpointAuthSigningAlg() {
158
        return tokenEndpointAuthSigningAlg;
159
    }
160

    
161
    public String getDefaultMaxAge() {
162
        return defaultMaxAge;
163
    }
164

    
165
    public String getRequireAuthTime() {
166
        return requireAuthTime;
167
    }
168

    
169
    public String[] getDefaultACRvalues() {
170
        return defaultACRvalues;
171
    }
172

    
173
    public String getInitiateLoginUri() {
174
        return initiateLoginUri;
175
    }
176

    
177
    public String[] getPostLogoutRedirectUris() {
178
        return postLogoutRedirectUris;
179
    }
180

    
181
    public String[] getRequestUris() {
182
        return requestUris;
183
    }
184

    
185
    public String[] getAuthorities() {
186
        return authorities;
187
    }
188

    
189
    public int getAccessTokenValiditySeconds() {
190
        return accessTokenValiditySeconds;
191
    }
192

    
193
    public int getRefreshTokenValiditySeconds() {
194
        return refreshTokenValiditySeconds;
195
    }
196

    
197
    public String[] getResourceIds() {
198
        return resourceIds;
199
    }
200

    
201
    public String getClientDescription() {
202
        return clientDescription;
203
    }
204

    
205
    public boolean isReuseRefreshToken() {
206
        return reuseRefreshToken;
207
    }
208

    
209
    public boolean isDynamicallyRegistered() {
210
        return dynamicallyRegistered;
211
    }
212

    
213
    public boolean isAllowIntrospection() {
214
        return allowIntrospection;
215
    }
216

    
217
    public int getIdTokenValiditySeconds() {
218
        return idTokenValiditySeconds;
219
    }
220

    
221
    public String getCreatedAt() {
222
        return createdAt;
223
    }
224

    
225
    public boolean isClearAccessTokensOnRefresh() {
226
        return clearAccessTokensOnRefresh;
227
    }
228

    
229
    public String getDeviceCodeValiditySeconds() {
230
        return deviceCodeValiditySeconds;
231
    }
232

    
233
    public String[] getClaimsRedirectUris() {
234
        return claimsRedirectUris;
235
    }
236

    
237
    public String getSoftwareStatement() {
238
        return softwareStatement;
239
    }
240

    
241
    public String getCodeChallengeMethod() {
242
        return codeChallengeMethod;
243
    }
244
}
(14-14/16)