Package com.alvazan.test.db

Examples of com.alvazan.test.db.NonVirtSub2


    if (FactorySingleton.getServerType() != DbTypeEnum.CASSANDRA)
      return;

    NonVirtSub1 s1 = new NonVirtSub1();
    s1.setName("dean");
    NonVirtSub2 s2 = new NonVirtSub2();
    s2.setNum(5);
 
    mgr.put(s1);
    mgr.put(s2);
   
    mgr.flush();
View Full Code Here


  @Test
  public void testInheritanceWithCassandraFindAll() {

    NonVirtSub1 s1 = new NonVirtSub1();
    s1.setName("dean");
    NonVirtSub2 s2 = new NonVirtSub2();
    s2.setNum(5);
 
    mgr.put(s1);
    mgr.put(s2);
   
    mgr.flush();
View Full Code Here

TOP

Related Classes of com.alvazan.test.db.NonVirtSub2

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.