Package com.google.enterprise.connector.spi

Examples of com.google.enterprise.connector.spi.RepositoryLoginException


  }

  /** Test authenticate() throws RepositoryLoginException. */
  public void testAuthenticateRepositoryLoginException() throws Exception {
    instantiator.addConnector(connectorName, new MockConnector(null,
        new ExceptionalAuthenticationManager(new RepositoryLoginException()),
        null, null, null));
    AuthenticationResponse response =
        manager.authenticate(connectorName, identity);
    assertNotNull(response);
    assertFalse(response.isValid());
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.spi.RepositoryLoginException

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.