Package org.easycassandra.persistence.cassandra.spring.entity

Examples of org.easycassandra.persistence.cassandra.spring.entity.Contact


  /**
     * run the test.
     */
  @Test
  public void insertTest() {
        Contact contact = new Contact();
    contact.setId(UUID.randomUUID());
    contact.setName("Poliana");
    contact.setYear(TWENTY);
    Assert.assertNotNull(contactReporitory.save(contact));

  }
View Full Code Here

TOP

Related Classes of org.easycassandra.persistence.cassandra.spring.entity.Contact

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.