Skip to content

Commit

Permalink
Merge pull request #1542 from nandhu-kumar/release-1.3.0-ES
Browse files Browse the repository at this point in the history
ES-1379
  • Loading branch information
lsivanand authored Jul 24, 2024
2 parents 101d815 + e278750 commit 6ad8781
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3727,8 +3727,11 @@ public static String signJWKForMock(String clientId, String accessToken, RSAKey
if (tempUrl.contains("esignet.")) {
tempUrl = tempUrl.replace("esignet.", propsKernel.getProperty("esignetMockBaseURL"));
}
int idTokenExpirySecs = Integer.parseInt(getValueFromEsignetActuator(GlobalConstants.ESIGNET_DEFAULT_PROPERTIES,

logger.info("actuatorPropertySection = " + ConfigManager.getActuatorPropertySection());
int idTokenExpirySecs = Integer.parseInt(getValueFromEsignetActuator(ConfigManager.getActuatorPropertySection(),
GlobalConstants.MOSIP_ESIGNET_ID_TOKEN_EXPIRE_SECONDS));
logger.info("idTokenExpirySecs = " + idTokenExpirySecs);
JWSSigner signer;
String proofJWT = "";
String typ = "openid4vci-proof+jwt";
Expand Down Expand Up @@ -5785,8 +5788,11 @@ public static String signJWKKeyForMock(String clientId, RSAKey jwkKey) {
if (tempUrl.contains("esignet.")) {
tempUrl = tempUrl.replace("esignet.", propsKernel.getProperty("esignetMockBaseURL"));
}
int idTokenExpirySecs = Integer.parseInt(getValueFromEsignetActuator(GlobalConstants.ESIGNET_DEFAULT_PROPERTIES,

logger.info("actuatorPropertySection = " + ConfigManager.getActuatorPropertySection());
int idTokenExpirySecs = Integer.parseInt(getValueFromEsignetActuator(ConfigManager.getActuatorPropertySection(),
GlobalConstants.MOSIP_ESIGNET_ID_TOKEN_EXPIRE_SECONDS));
logger.info("idTokenExpirySecs = " + idTokenExpirySecs);
JWSSigner signer;

try {
Expand Down

0 comments on commit 6ad8781

Please sign in to comment.