Package com.google.enterprise.connector.dctm.dfcwrap

Examples of com.google.enterprise.connector.dctm.dfcwrap.IQuery.execute()


  public void testGetValue() throws RepositoryException {
    IQuery query = null;
    query = localClient.getQuery();
    query.setDQL(DmInitialize.DM_QUERY_STRING_ENABLE);
    ICollection collec = query.execute(sess7, IQuery.READ_QUERY);
    if (collec.next()) {
      IValue val = collec.getValue("r_object_id");
      Assert.assertTrue(val instanceof MockDmValue);
    }
  }
View Full Code Here


  }

  public void testGetString() throws RepositoryException {
    IQuery query = localClient.getQuery();
    query.setDQL(DmInitialize.DM_QUERY_STRING_ENABLE);
    ICollection collec = query.execute(sess7, IQuery.READ_QUERY);
    if (collec.next()) {
      String rep = collec.getString("jcr:uuid");
      Assert.assertEquals(rep, DmInitialize.DM_ID1);
    }
  }
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.