Package org.jamesii.asf.database.hibernate

Examples of org.jamesii.asf.database.hibernate.Selector


    assertEquals(testURI, entity.getUri());
  }

  @Override
  protected Selector getEntity(String name) throws Exception {
    Selector selector = new Selector();
    selector.setName(name);
    TestSelectorType tst = new TestSelectorType(session);
    selector.setSelectorType(tst.createEntity("selector type for selector "
        + name));
    selector.setUri(testURI);
    selector.setCode(TEST_CODE);
    selector.setParameters(TEST_PARAMETERS);
    return selector;
  }
View Full Code Here

TOP

Related Classes of org.jamesii.asf.database.hibernate.Selector

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.