Package com.avaje.tests.compositekeys.db

Examples of com.avaje.tests.compositekeys.db.CaoKey


public class TestCaoCompositeKeyWithAnnotationOverrides extends BaseTestCase {

  @Test
  public void test() {
   
    CaoKey key = new CaoKey();
    key.setCustomer(123);
    key.setType(1);
   
    CaoBean bean = new CaoBean();
    bean.setKey(key);
    bean.setDescription("some desc");
View Full Code Here

TOP

Related Classes of com.avaje.tests.compositekeys.db.CaoKey

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.