Uses of Class
org.dspace.alerts.SystemWideAlert
-
Packages that use SystemWideAlert Package Description org.dspace.alerts org.dspace.alerts.dao org.dspace.alerts.dao.impl org.dspace.alerts.service -
-
Uses of SystemWideAlert in org.dspace.alerts
Fields in org.dspace.alerts with type parameters of type SystemWideAlert Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<SystemWideAlert,Boolean>SystemWideAlert_. activestatic javax.persistence.metamodel.SingularAttribute<SystemWideAlert,Integer>SystemWideAlert_. alertIdstatic javax.persistence.metamodel.SingularAttribute<SystemWideAlert,String>SystemWideAlert_. allowSessionsstatic javax.persistence.metamodel.SingularAttribute<SystemWideAlert,Date>SystemWideAlert_. countdownTostatic javax.persistence.metamodel.SingularAttribute<SystemWideAlert,String>SystemWideAlert_. messageMethods in org.dspace.alerts that return SystemWideAlert Modifier and Type Method Description SystemWideAlertSystemWideAlertServiceImpl. create(Context context, String message, AllowSessionsEnum allowSessionsType, Date countdownTo, boolean active)SystemWideAlertSystemWideAlertServiceImpl. find(Context context, int alertId)Methods in org.dspace.alerts that return types with arguments of type SystemWideAlert Modifier and Type Method Description List<SystemWideAlert>SystemWideAlertServiceImpl. findAll(Context context)List<SystemWideAlert>SystemWideAlertServiceImpl. findAll(Context context, int limit, int offset)List<SystemWideAlert>SystemWideAlertServiceImpl. findAllActive(Context context, int limit, int offset)Methods in org.dspace.alerts with parameters of type SystemWideAlert Modifier and Type Method Description voidSystemWideAlertServiceImpl. delete(Context context, SystemWideAlert systemWideAlert)voidSystemWideAlertServiceImpl. update(Context context, SystemWideAlert systemWideAlert) -
Uses of SystemWideAlert in org.dspace.alerts.dao
Methods in org.dspace.alerts.dao that return types with arguments of type SystemWideAlert Modifier and Type Method Description List<SystemWideAlert>SystemWideAlertDAO. findAll(Context context, int limit, int offset)Returns a list of all SystemWideAlert objects in the databaseList<SystemWideAlert>SystemWideAlertDAO. findAllActive(Context context, int limit, int offset)Returns a list of all active SystemWideAlert objects in the database -
Uses of SystemWideAlert in org.dspace.alerts.dao.impl
Methods in org.dspace.alerts.dao.impl that return types with arguments of type SystemWideAlert Modifier and Type Method Description List<SystemWideAlert>SystemWideAlertDAOImpl. findAll(Context context, int limit, int offset)List<SystemWideAlert>SystemWideAlertDAOImpl. findAllActive(Context context, int limit, int offset) -
Uses of SystemWideAlert in org.dspace.alerts.service
Methods in org.dspace.alerts.service that return SystemWideAlert Modifier and Type Method Description SystemWideAlertSystemWideAlertService. create(Context context, String message, AllowSessionsEnum allowSessionsType, Date countdownTo, boolean active)This method will create a SystemWideAlert object in the databaseSystemWideAlertSystemWideAlertService. find(Context context, int alertId)This method will retrieve a SystemWideAlert object from the Database with the given IDMethods in org.dspace.alerts.service that return types with arguments of type SystemWideAlert Modifier and Type Method Description List<SystemWideAlert>SystemWideAlertService. findAll(Context context)Returns a list of all SystemWideAlert objects in the databaseList<SystemWideAlert>SystemWideAlertService. findAll(Context context, int limit, int offset)Returns a list of all SystemWideAlert objects in the databaseList<SystemWideAlert>SystemWideAlertService. findAllActive(Context context, int limit, int offset)Returns a list of all active SystemWideAlert objects in the databaseMethods in org.dspace.alerts.service with parameters of type SystemWideAlert Modifier and Type Method Description voidSystemWideAlertService. delete(Context context, SystemWideAlert systemWideAlert)This method will delete the given SystemWideAlert object from the databasevoidSystemWideAlertService. update(Context context, SystemWideAlert systemWideAlert)This method will be used to update the given SystemWideAlert object in the database
-