-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathTransientTokenUtility.java
34 lines (29 loc) · 1.03 KB
/
TransientTokenUtility.java
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
package utilities.flex.transientToken;
import java.util.Base64;
import com.google.gson.Gson;
public class TransientTokenUtility {
/**
* This is the method to extract transient token from given jwt token
* @param jwt
* @return
*/
public JwtResponseModel extractTransientToken(String jwt)
{
// split the jwt token into two parts
// bearer and token part
String splitContents[] = jwt.split(".");
if(splitContents.length > 1)
{
// decode the base 64 encoded string
String encodedString = splitContents[1];
byte[] decodedBytes = Base64.getDecoder().decode(encodedString);
String decodedString = new String(decodedBytes);
Gson gson=new Gson();
// Map decoded string to response model
JwtResponseModel jwtResponseModel = gson.fromJson(decodedString,JwtResponseModel.class);
// return JTI string
return jwtResponseModel;
}
return null;
}
}