Package com.taobao.tdhs.client.response

Examples of com.taobao.tdhs.client.response.TDHSResponse


  @Test
  public void testGet35() throws TDHSException {
    try {
      Filter f = new Filter(fields[2], FilterFlag.TDHS_LT, level);
      TDHSResponse r = client.get(db, table, index, new String[] {
          fields[0], fields[2] }, new String[][] { { name } },
          FindFlag.TDHS_IN, 0, 100, new Filter[] { f });
      Assert.assertEquals(ClientStatus.OK, r.getStatus());
      Assert.assertEquals(0, r.getFieldData().size());
    } catch (TDHSException e) {
      throw new TDHSException("Get1 exception", e);
    }
  }
View Full Code Here

TOP

Related Classes of com.taobao.tdhs.client.response.TDHSResponse

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.