Examples of LdapClearCacheEvent


Examples of org.sonatype.security.ldap.realms.persist.LdapClearCacheEvent

  @Override
  public synchronized void clearCache() {
    ldapConfiguration = null;
    // fire event
    eventBus.post(new LdapClearCacheEvent(this));
  }
View Full Code Here

Examples of org.sonatype.security.ldap.realms.persist.LdapClearCacheEvent

    }
    catch (IOException e) {
      log.error("IOException while storing LDAP configuration file", e);
    }
    // fire clear cache event
    eventBus.post(new LdapClearCacheEvent(this));
  }
View Full Code Here

Examples of org.sonatype.security.ldap.realms.persist.LdapClearCacheEvent

    // all systems are good
    Assert.assertNotNull(ldapManager.getUser("rwalker"));

    // now clear the cache
    ldapManager.onEvent(new LdapClearCacheEvent(null));

    // we also need to reset the connectors
    List<LdapConnector> connectors = ldapManager.getLdapConnectors();
    connectors.clear();
    connectors.addAll(this.getLdapConnectors());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.