Package org.jboss.security.identitytrust

Examples of org.jboss.security.identitytrust.IdentityTrustException


/*  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;
/*     */   }
View Full Code Here


      IdentityTrustManager itm = securityContext.getIdentityTrustManager();
      if(itm != null)
      {
         td = itm.isTrusted(securityContext);
         if(td == TrustDecision.Deny)
            throw new IdentityTrustException("Caller denied by identity trust framework");
      }
      return td == TrustDecision.Permit;
   }  
View Full Code Here

TOP

Related Classes of org.jboss.security.identitytrust.IdentityTrustException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.