Package org.acegisecurity.event.authorization

Examples of org.acegisecurity.event.authorization.PublicInvocationEvent


      if (logger.isDebugEnabled()) {
        logger.debug("Public object - authentication not attempted");
      }

      publishEvent(new PublicInvocationEvent(object));

      return null; // no further work post-invocation
    }

    if (logger.isDebugEnabled()) {
View Full Code Here


        } else {
            if (logger.isDebugEnabled()) {
                logger.debug("Public object - authentication not attempted");
            }

            this.eventPublisher.publishEvent(new PublicInvocationEvent(
                    object));

            return null; // no further work post-invocation
        }
    }
View Full Code Here

TOP

Related Classes of org.acegisecurity.event.authorization.PublicInvocationEvent

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.