EntityUtils.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package org.springframework.samples.petclinic.util;
  2. import java.util.Collection;
  3. import org.springframework.orm.ObjectRetrievalFailureException;
  4. import org.springframework.samples.petclinic.BaseEntity;
  5. /**
  6.  * Utility methods for handling entities. Separate from the BaseEntity class
  7.  * mainly because of dependency on the ORM-associated
  8.  * ObjectRetrievalFailureException.
  9.  *
  10.  * @author Juergen Hoeller
  11.  * @author Sam Brannen
  12.  * @since 29.10.2003
  13.  * @see org.springframework.samples.petclinic.BaseEntity
  14.  */
  15. public abstract class EntityUtils {
  16. /**
  17.  * Look up the entity of the given class with the given id in the given
  18.  * collection.
  19.  *
  20.  * @param entities the collection to search
  21.  * @param entityClass the entity class to look up
  22.  * @param entityId the entity id to look up
  23.  * @return the found entity
  24.  * @throws ObjectRetrievalFailureException if the entity was not found
  25.  */
  26. public static <T extends BaseEntity> T getById(Collection<T> entities, Class<T> entityClass, int entityId)
  27. throws ObjectRetrievalFailureException {
  28. for (T entity : entities) {
  29. if (entity.getId().intValue() == entityId && entityClass.isInstance(entity)) {
  30. return entity;
  31. }
  32. }
  33. throw new ObjectRetrievalFailureException(entityClass, new Integer(entityId));
  34. }
  35. }