/* 53 */ IdentityTrustManager itm = this.securityContext.getIdentityTrustManager();
/* 54 */ if (itm != null)
/* */ {
/* 56 */ td = itm.isTrusted(this.securityContext);
/* 57 */ if (td == IdentityTrustManager.TrustDecision.Deny)
/* 58 */ throw new IdentityTrustException("Caller denied by identity trust framework");
/* */ }
/* 60 */ return td == IdentityTrustManager.TrustDecision.Permit;
/* */ }