Package org.cyclos.services.system
Interface EntityLogService
-
- All Superinterfaces:
Service
- All Known Subinterfaces:
EntityLogServiceLocal
- All Known Implementing Classes:
EntityLogServiceImpl,EntityLogServiceSecurity
public interface EntityLogService extends Service
Service for work with the generated entity logs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityPropertyLogVOload(@NotNull Long id)Loads anEntityPropertyLogVOby idPage<EntityPropertyLogVO>search(@NotNull EntityPropertyLogQuery params)Search for logs of an entity.
TheEntityPropertyLogQuery.ENTITY_IDandEntityPropertyLogQuery.TYPEare required.
-
-
-
Method Detail
-
load
EntityPropertyLogVO load(@NotNull @NotNull Long id)
Loads anEntityPropertyLogVOby id
-
search
Page<EntityPropertyLogVO> search(@NotNull @NotNull EntityPropertyLogQuery params)
Search for logs of an entity.
TheEntityPropertyLogQuery.ENTITY_IDandEntityPropertyLogQuery.TYPEare required.
-
-