Package com.google.enterprise.connector.traversal

Examples of com.google.enterprise.connector.traversal.TraversalStateStore


    assertNull(instantiator.getConnectorSchedule(connectorName));
  }

  /** Test restartConnectorTraversal. */
  public void testRestartTraversal() throws Exception {
    TraversalStateStore store =
        instantiator.getTraversalStateStore(connectorName);
    store.storeTraversalState("checkpoint");
    assertEquals("checkpoint", store.getTraversalState());
    manager.restartConnectorTraversal(connectorName);
    assertNull(store.getTraversalState());
  }
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.traversal.TraversalStateStore

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.