| Package | Description |
|---|---|
| org.fryske_akademy.ejb | |
| org.fryske_akademy.jpa |
| Modifier and Type | Method and Description |
|---|---|
<T extends EntityInterface> |
CrudWriteService.createOrUpdate(T t) |
<T extends EntityInterface> |
AbstractCrudService.createOrUpdate(T t) |
<T extends EntityInterface> |
AbstractCrudService.find(Serializable id,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.find(Serializable id,
Class<T> type) |
<T extends EntityInterface> |
AbstractCrudService.find(String namedQuery,
List<Param> params,
Integer first,
Integer max,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.find(String namedQuery,
List<Param> params,
Integer first,
Integer max,
Class<T> type) |
<T extends EntityInterface> |
AbstractCrudService.findAll(Class<T> type) |
<T extends EntityInterface> |
CrudReadService.findAll(Class<T> type) |
<T extends EntityInterface> |
AbstractCrudService.findDynamic(Integer first,
Integer pageSize,
Map<String,CrudReadService.SORTORDER> sort,
List<Param> params,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.findDynamic(Integer first,
Integer pageSize,
Map<String,CrudReadService.SORTORDER> sort,
List<Param> params,
Class<T> type) |
<T extends EntityInterface> |
AbstractCrudService.findNative(String namedNativeQuery,
List<Param> params,
Integer first,
Integer max,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.findNative(String namedNativeQuery,
List<Param> params,
Integer first,
Integer max,
Class<T> type) |
<T extends EntityInterface> |
AbstractCrudService.findOne(String namedQuery,
List<Param> params,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.findOne(String namedQuery,
List<Param> params,
Class<T> type)
return one result or null, multiple results throws an exception
|
<T extends EntityInterface> |
AbstractCrudService.getRevision(Number n,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.getRevision(Number n,
Class<T> type)
get historical data for a certain revision
|
<T extends EntityInterface> |
AbstractCrudService.getRevisionInfo(T entity,
Integer max,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.getRevisionInfo(T entity,
Integer max,
Class<T> type)
return a list holding revision information, newest come first
|
<T extends EntityInterface> |
AbstractCrudService.getRevisionNumbers(Object id,
Class<T> type) |
<T extends EntityInterface> |
CrudReadService.getRevisionNumbers(Object id,
Class<T> type)
return list of revision numbers, first is the oldest
|
| Modifier and Type | Method and Description |
|---|---|
void |
CrudWriteService.delete(EntityInterface t) |
void |
AbstractCrudService.delete(EntityInterface t) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEntity
superclass used for all entities, defines id and version column and a function to check if the entity is transient (not in db yet)
|
Copyright © 2018 Fryske Akademy. All rights reserved.