File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
openid-connect-common/src/main/java/org/mitre/jose/keystore Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 24
24
import java .text .ParseException ;
25
25
import java .util .List ;
26
26
27
- import javax .annotation .PostConstruct ;
28
-
29
27
import org .springframework .core .io .Resource ;
30
28
31
29
import com .google .common .base .Charsets ;
32
- import com .google .common .io .CharStreams ;
30
+ import com .google .co / Users / aanganes / Documents / OpenID / OpenID - Connect - Java - Spring - Server / openid - connect - common / src / main / java / org / mitre / jose / keystore / JWKSetKeyStore . javammon .io .CharStreams ;
33
31
import com .nimbusds .jose .jwk .JWK ;
34
32
import com .nimbusds .jose .jwk .JWKSet ;
35
33
@@ -49,9 +47,9 @@ public JWKSetKeyStore() {
49
47
50
48
public JWKSetKeyStore (JWKSet jwkSet ) {
51
49
this .jwkSet = jwkSet ;
50
+ initializeJwkSet ();
52
51
}
53
52
54
- @ PostConstruct
55
53
private void initializeJwkSet () {
56
54
57
55
if (jwkSet == null ) {
@@ -92,6 +90,7 @@ public JWKSet getJwkSet() {
92
90
*/
93
91
public void setJwkSet (JWKSet jwkSet ) {
94
92
this .jwkSet = jwkSet ;
93
+ initializeJwkSet ();
95
94
}
96
95
97
96
/**
@@ -106,6 +105,7 @@ public Resource getLocation() {
106
105
*/
107
106
public void setLocation (Resource location ) {
108
107
this .location = location ;
108
+ initializeJwkSet ();
109
109
}
110
110
111
111
/**
You can’t perform that action at this time.
0 commit comments