Uses of Class
org.azzyzt.jee.runtime.exception.EntityNotFoundException

Packages that use EntityNotFoundException
org.azzyzt.jee.runtime.conv   
org.azzyzt.jee.runtime.eao   
 

Uses of EntityNotFoundException in org.azzyzt.jee.runtime.conv
 

Methods in org.azzyzt.jee.runtime.conv that throw EntityNotFoundException
 EntityBase ConverterRawInterface.fromRawDto(java.lang.Object in)
          converts a DTO to the associated entity
 

Uses of EntityNotFoundException in org.azzyzt.jee.runtime.eao
 

Methods in org.azzyzt.jee.runtime.eao that throw EntityNotFoundException
<I,T extends EntityBase<I>>
void
EaoBase.delete(java.lang.Class<T> clazz, I id)
          Deletes an entity of a given class and ID.
 void MultiObjectDeleter.delete(EaoBase eao, TypeMetaInfoInterface tmi, java.util.List dtos)
          Uses an EAO and type meta information to delete the entities corresponding to a list of DTOs.
 void EaoBase.delete(java.lang.Object id, java.lang.Class<?> clazz)
          Another version needed in cases when we are definite about the classes, but have no way to prove it to the compiler.
<I,T extends EntityBase<I>>
T
EaoBase.findOrCreate(java.lang.Class<T> clazz, I id)
          Fetches an entity by ID or, if it does not exist, creates it.
<I,T extends EntityBase<I>>
T
EaoBase.findOrFail(java.lang.Class<T> clazz, I id)
          Fetches an entity by ID or, if it does not exist, fails with an exception.
 java.lang.Object EaoBase.findOrFail(java.lang.Object id, java.lang.Class<?> clazz)
          A raw version of EaoBase.findOrFail(Class, Object) needed in cases when we are definite about the classes, but have no way to prove it to the compiler.
<I,T extends EntityBase<I>>
T
EaoBase.findOrInvalidId(java.lang.Class<T> clazz, I id)
          Fetches an entity by ID or, if the ID is invalid or null, fails.
 java.lang.Object[] MultiObjectSaver.store(EaoBase eao, InvocationRegistryInterface invocationRegistry, TypeMetaInfoInterface tmi, java.util.List dtos)
          Uses an EAO and type meta information to persist the entities corresponding to a list of DTOs.