Package br.net.woodstock.rockframework.domain

Examples of br.net.woodstock.rockframework.domain.Entity


  @SuppressWarnings("rawtypes")
  public void delete(final Entity<?> e) {
    try {
      this.entityManager.remove(e);
    } catch (IllegalArgumentException ex) {
      Entity tmp = this.entityManager.find(e.getClass(), e.getId());
      this.entityManager.remove(tmp);
    }
  }
View Full Code Here

TOP

Related Classes of br.net.woodstock.rockframework.domain.Entity

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.