Uses of Class
com.jalios.jdring.AlarmEntry
-
Packages that use AlarmEntry Package Description com.jalios.jcms Contains the core JPlatform classes.com.jalios.jcms.alert com.jalios.jcms.application com.jalios.jcms.authentication.cookie com.jalios.jcms.db com.jalios.jcms.fileprocessor com.jalios.jcms.mail com.jalios.jcms.monitoring com.jalios.jcms.quota com.jalios.jcms.replicamessage com.jalios.jdring Contains JDring classes. -
-
Uses of AlarmEntry in com.jalios.jcms
Fields in com.jalios.jcms declared as AlarmEntry Modifier and Type Field Description protected AlarmEntry
NotificationManager. dayAlarmEntry
protected AlarmEntry
NotificationManager. hourAlarmEntry
protected AlarmEntry
NotificationManager. minuteAlarmEntry
protected AlarmEntry
NotificationManager. monthAlarmEntry
protected AlarmEntry
Channel. nlAlarmEntry
protected AlarmEntry
NotificationManager. weekAlarmEntry
protected AlarmEntry
Publication. wfExpressAlarmEntry
protected AlarmEntry
Publication. wfReminderAlarmEntry
Methods in com.jalios.jcms that return AlarmEntry Modifier and Type Method Description AlarmEntry
Publication. getPstatusAlarmEntry(int pstatus)
Get the alarmEntry bound to a given pstatusAlarmEntry
PublicationIndexManager. getPstatusAlarmEntry(Publication pub, int pstatus)
AlarmEntry
Publication. removePstatusAlarmEntry(int pstatus)
Remove an AlarmEntry to a given pstatusAlarmEntry
PublicationIndexManager. removePstatusAlarmEntry(Publication pub, int pstatus)
Removes the alarm entry of the given pstatus for the given publication.Methods in com.jalios.jcms that return types with arguments of type AlarmEntry Modifier and Type Method Description java.util.Map<java.lang.Integer,AlarmEntry>
PublicationIndexManager. getPstatusAlarmEntryMap(Publication pub)
Returns the AlarmEntry map associated to the given publication.Methods in com.jalios.jcms with parameters of type AlarmEntry Modifier and Type Method Description void
JSyncDataListener. handleAlarm(AlarmEntry entry)
void
MemberImportManager.SendActivationMailAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
void
PstatusAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
Invoked when pstatus alarm is reached, update pstatus if allowed tovoid
WFExpressAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
void
WFReminderAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
void
Publication. putPstatusAlarmEntry(int pstatus, AlarmEntry alarmEntry)
Bind an AlarmEntry to a given pstatusvoid
PublicationIndexManager. putPstatusAlarmEntry(Publication pub, int pstatus, AlarmEntry alarmEntry)
Binds the given AlarmEntry to the given pstatus for the given publication. -
Uses of AlarmEntry in com.jalios.jcms.alert
Methods in com.jalios.jcms.alert with parameters of type AlarmEntry Modifier and Type Method Description void
AlertPurgeAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
-
Uses of AlarmEntry in com.jalios.jcms.application
Methods in com.jalios.jcms.application with parameters of type AlarmEntry Modifier and Type Method Description void
ApplicationInstallCountAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
-
Uses of AlarmEntry in com.jalios.jcms.authentication.cookie
Methods in com.jalios.jcms.authentication.cookie with parameters of type AlarmEntry Modifier and Type Method Description void
AuthenticationCookiePurgeAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
-
Uses of AlarmEntry in com.jalios.jcms.db
Methods in com.jalios.jcms.db with parameters of type AlarmEntry Modifier and Type Method Description void
DBEventLogManager. handleAlarm(AlarmEntry entry)
void
TransactionalAlarmListener. handleAlarm(AlarmEntry entry)
Hibernate transactionnal implementation ofAlarmListener.handleAlarm(AlarmEntry)
.abstract void
TransactionalAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
Method to be implemented by subclass. -
Uses of AlarmEntry in com.jalios.jcms.fileprocessor
Methods in com.jalios.jcms.fileprocessor with parameters of type AlarmEntry Modifier and Type Method Description void
FileProcessorAlarmListener. handleAlarm(AlarmEntry entry)
void
FileProcessorPostponedAlarmListener. handleTransactionalAlarm(AlarmEntry entry)
-
Uses of AlarmEntry in com.jalios.jcms.mail
Subclasses of AlarmEntry in com.jalios.jcms.mail Modifier and Type Class Description class
MailFetcherAlarmEntry
Methods in com.jalios.jcms.mail with parameters of type AlarmEntry Modifier and Type Method Description void
MailFetcher. handleAlarm(AlarmEntry entry)
-
Uses of AlarmEntry in com.jalios.jcms.monitoring
Methods in com.jalios.jcms.monitoring with parameters of type AlarmEntry Modifier and Type Method Description void
MonitoringManager. handleTransactionalAlarm(AlarmEntry entry)
TransactionalAlarmListener implementation. -
Uses of AlarmEntry in com.jalios.jcms.quota
Methods in com.jalios.jcms.quota with parameters of type AlarmEntry Modifier and Type Method Description void
QuotaManager. handleAlarm(AlarmEntry entry)
Manage periodically quota refresh -
Uses of AlarmEntry in com.jalios.jcms.replicamessage
Methods in com.jalios.jcms.replicamessage with parameters of type AlarmEntry Modifier and Type Method Description void
ReplicaMessageManager. handleAlarm(AlarmEntry entry)
-
Uses of AlarmEntry in com.jalios.jdring
Fields in com.jalios.jdring with type parameters of type AlarmEntry Modifier and Type Field Description protected java.util.SortedSet<AlarmEntry>
AlarmManager. queue
Methods in com.jalios.jdring that return AlarmEntry Modifier and Type Method Description AlarmEntry
AlarmManager. addAlarm(int delay, boolean isRepetitive, AlarmListener listener)
Adds an alarm for a specified delay.AlarmEntry
AlarmManager. addAlarm(int minute, int hour, int dayOfMonth, int month, int dayOfWeek, int year, AlarmListener listener)
Adds an alarm for a specified date.AlarmEntry
AlarmManager. addAlarm(java.util.Date date, AlarmListener listener)
Adds an alarm for a specified date.AlarmEntry
AlarmManager. getNextAlarm()
Returns the next alarm present in queue but don't remove it from queueMethods in com.jalios.jdring that return types with arguments of type AlarmEntry Modifier and Type Method Description java.util.List<AlarmEntry>
AlarmManager. getAllAlarms()
Returns a copy of all alarms in the manager.Methods in com.jalios.jdring with parameters of type AlarmEntry Modifier and Type Method Description void
AlarmManager. addAlarm(AlarmEntry entry)
Adds an alarm for a specified AlarmEntryboolean
AlarmManager. containsAlarm(AlarmEntry alarmEntry)
Tests whether the supplied AlarmEntry is in the manager.void
AlarmListener. handleAlarm(AlarmEntry entry)
Invoked when an alarm is triggered.boolean
AlarmManager. removeAlarm(AlarmEntry entry)
Removes the specified AlarmEntry.
-