LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
global class JWTBearerTokenExchange {
    global JWTBearerTokenExchange(String tokenEndpoint, Auth.JWS jws) { }
    global JWTBearerTokenExchange() { }
    global Object clone() { }
    global String getAccessToken() { }
    global String getGrantType() { }
    global System.HttpResponse getHttpResponse() { }
    global Auth.JWS getJWS() { }
    global String getTokenEndpoint() { }
    global void setGrantType(String grantType) { }
    global void setJWS(Auth.JWS jws) { }
    global void setTokenEndpoint(String tokenEndpoint) { }
global class JWTBearerTokenExchangeException extends Exception {
    global JWTBearerTokenExchange.JWTBearerTokenExchangeException(String param0, Exception param1) { }
    global JWTBearerTokenExchange.JWTBearerTokenExchangeException(Exception param0) { }
    global JWTBearerTokenExchange.JWTBearerTokenExchangeException(String param0) { }
    global JWTBearerTokenExchange.JWTBearerTokenExchangeException() { }
    global Object clone() { }
    global String getTypeName() { }
 
}
 
}