Package org.acegisecurity.event.authorization

Examples of org.acegisecurity.event.authorization.AuthenticationCredentialsNotFoundEvent


   * @param configAttribs that were defined for the secureObject
   */
  private void credentialsNotFound(String reason, Object secureObject, ConfigAttributeDefinition configAttribs) {
    AuthenticationCredentialsNotFoundException exception = new AuthenticationCredentialsNotFoundException(reason);

    AuthenticationCredentialsNotFoundEvent event = new AuthenticationCredentialsNotFoundEvent(secureObject,
        configAttribs, exception);
    publishEvent(event);

    throw exception;
  }
View Full Code Here


     */
    private void credentialsNotFound(String reason, Object secureObject,
        ConfigAttributeDefinition configAttribs) {
        AuthenticationCredentialsNotFoundException exception = new AuthenticationCredentialsNotFoundException(reason);

        AuthenticationCredentialsNotFoundEvent event = new AuthenticationCredentialsNotFoundEvent(secureObject,
                configAttribs, exception);
        this.eventPublisher.publishEvent(event);

        throw exception;
    }
View Full Code Here

TOP

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

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.