Package org.jboss.aspects.security

Examples of org.jboss.aspects.security.AuthenticationInterceptor


   {
      super(manager);
      this.container = (EJBContainer)container;
      this.realmMapping = (RealmMapping)manager;
      // TODO: can be optimized to only instantiate when securityDomain has an unauthenticatedPrincipal
      this.unauthenticatedAuthenticationInterceptor = new AuthenticationInterceptor(null)
      {
         @Override
         protected void authenticate(Invocation invocation) throws Exception
         {
            super.authenticate(invocation);
View Full Code Here


/*     */   {
/*  68 */     super(manager);
/*  69 */     this.container = ((EJBContainer)container);
/*  70 */     this.realmMapping = ((RealmMapping)manager);
/*     */
/*  72 */     this.unauthenticatedAuthenticationInterceptor = new AuthenticationInterceptor(null, manager)
/*     */     {
/*     */       protected void authenticate(Invocation invocation)
/*     */         throws Exception
/*     */       {
/*  77 */         super.authenticate(invocation);
View Full Code Here

TOP

Related Classes of org.jboss.aspects.security.AuthenticationInterceptor

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.