Package org.hibernate.ejb.metamodel

Examples of org.hibernate.ejb.metamodel.Address


  }

  public void testEqualityComparisonEntityConversion() {
    EntityManager em = getOrCreateEntityManager();
    em.getTransaction().begin();
    Address address = new Address( "Street Id", "Fake Street", "Fake City", "Fake State", "Fake Zip" );
    Phone phone1 = new Phone( "1", "555", "0001", address );
    Phone phone2 = new Phone( "2", "555", "0002", address );
    Phone phone3 = new Phone( "3", "555", "0003", address );
    Phone phone4 = new Phone( "4", "555", "0004" );

    Collection<Phone> phones = new ArrayList<Phone>( 3 );
    phones.add( phone1 );
    phones.add( phone2 );
    phones.add( phone3 );

    address.setPhones( phones );
    em.persist( address );
    em.persist( phone4 );

    em.getTransaction().commit();
View Full Code Here

TOP

Related Classes of org.hibernate.ejb.metamodel.Address

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.