Package org.cyclos.services.messaging
Interface AlertService
-
- All Superinterfaces:
Service
- All Known Subinterfaces:
AlertServiceLocal
- All Known Implementing Classes:
AlertServiceImpl,AlertServiceSecurity
public interface AlertService extends Service
Service interface for alerts
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemAlertSearchDatagetSystemSearchData()Returns data for searching the system alerts historyUserAlertSearchDatagetUserSearchData()Returns data for searching the user alerts historyPage<SystemAlertVO>searchSystem(@NotNull SystemAlertQuery alertQuery)Searches for system alerts historyPage<UserAlertVO>searchUser(@NotNull UserAlertQuery alertQuery)Searches for user alerts history
-
-
-
Method Detail
-
getSystemSearchData
SystemAlertSearchData getSystemSearchData() throws FrameworkException
Returns data for searching the system alerts history- Throws:
FrameworkException
-
getUserSearchData
UserAlertSearchData getUserSearchData() throws FrameworkException
Returns data for searching the user alerts history- Throws:
FrameworkException
-
searchSystem
Page<SystemAlertVO> searchSystem(@NotNull @NotNull SystemAlertQuery alertQuery) throws FrameworkException
Searches for system alerts history- Throws:
FrameworkException
-
searchUser
Page<UserAlertVO> searchUser(@NotNull @NotNull UserAlertQuery alertQuery) throws FrameworkException
Searches for user alerts history- Throws:
FrameworkException
-
-