/* */ public IdentityTrustManager.TrustDecision isTrusted(SecurityContext securityContext)
/* */ {
/* 62 */ if (securityContext == null)
/* 63 */ throw new IllegalArgumentException("Security Context is null");
/* 64 */ if (this.identityTrustContext == null)
/* 65 */ this.identityTrustContext = new JBossIdentityTrustContext(this.securityDomain, securityContext);
/* 66 */ IdentityTrustManager.TrustDecision td = IdentityTrustManager.TrustDecision.NotApplicable;
/* 67 */ if (this.identityTrustContext == null) {
/* 68 */ throw new IllegalStateException("IdentityTrustContext is null");
/* */ }
/* */ try