Package org.cyclos.services.messaging
Interface ErrorLogService
-
- All Superinterfaces:
Service
- All Known Subinterfaces:
ErrorLogServiceLocal
public interface ErrorLogService extends Service
Service used to access the error log
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorLogSearchDatagetSearchData()Searches the error log historyErrorLogDetailedVOload(@NotNull Long id)Loads an entry by idvoidremove(@NotNull Long id)Removes a single entryvoidremoveAll(@NotNull Set<Long> ids)Removes all the given entriesPage<ErrorLogVO>search(@NotNull ErrorLogQuery query)Searches the error log history
-
-
-
Method Detail
-
getSearchData
ErrorLogSearchData getSearchData() throws FrameworkException
Searches the error log history- Throws:
FrameworkException
-
load
ErrorLogDetailedVO load(@NotNull @NotNull Long id) throws FrameworkException
Loads an entry by id- Throws:
FrameworkException
-
remove
void remove(@NotNull @NotNull Long id) throws FrameworkExceptionRemoves a single entry- Throws:
FrameworkException
-
removeAll
void removeAll(@NotNull @NotNull Set<Long> ids) throws FrameworkExceptionRemoves all the given entries- Throws:
FrameworkException
-
search
Page<ErrorLogVO> search(@NotNull @NotNull ErrorLogQuery query) throws FrameworkException
Searches the error log history- Throws:
FrameworkException
-
-