OAuth2GraniteIssuer.java
2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.granite.crypto.CryptoException
* com.adobe.granite.oauth.jwt.JwsBuilder
* org.apache.oltu.oauth2.as.issuer.OAuthIssuer
* org.apache.oltu.oauth2.common.exception.OAuthSystemException
*/
package com.adobe.granite.oauth.server.impl;
import com.adobe.granite.crypto.CryptoException;
import com.adobe.granite.oauth.jwt.JwsBuilder;
import org.apache.oltu.oauth2.as.issuer.OAuthIssuer;
import org.apache.oltu.oauth2.common.exception.OAuthSystemException;
public class OAuth2GraniteIssuer
implements OAuthIssuer {
private JwsBuilder jwsBuilder;
public OAuth2GraniteIssuer(JwsBuilder jwsBuilder) {
this.jwsBuilder = jwsBuilder;
}
public String accessToken() throws OAuthSystemException {
try {
return this.jwsBuilder.build();
}
catch (CryptoException e) {
throw new OAuthSystemException((Throwable)e);
}
}
public String authorizationCode() throws OAuthSystemException {
try {
return this.jwsBuilder.build();
}
catch (CryptoException e) {
throw new OAuthSystemException((Throwable)e);
}
}
public String refreshToken() throws OAuthSystemException {
try {
return this.jwsBuilder.build();
}
catch (CryptoException e) {
throw new OAuthSystemException((Throwable)e);
}
}
public OAuth2GraniteIssuer setIssuer(String iss) {
this.jwsBuilder.setIssuer(iss);
return this;
}
public OAuth2GraniteIssuer setExpiresIn(String expiresIn) {
this.jwsBuilder.setExpiresIn(Long.parseLong(expiresIn));
return this;
}
public OAuth2GraniteIssuer setSubject(String sub) {
this.jwsBuilder.setSubject(sub);
return this;
}
public OAuth2GraniteIssuer setAudience(String aud) {
this.jwsBuilder.setAudience(aud);
return this;
}
public OAuth2GraniteIssuer setScope(String scope) {
this.jwsBuilder.setScope(scope);
return this;
}
public OAuth2GraniteIssuer setCustomClaimsSetField(String key, Object value) {
this.jwsBuilder.setCustomClaimsSetField(key, value);
return this;
}
}