Uses of Interface
lumis.portal.sendmail.IMailDestination
-
Packages that use IMailDestination Package Description lumis.portal.activitystream.notifier.email lumis.portal.sendmail lumis.portal.sendmail.dao lumis.portal.sendmail.dao.hibernate -
-
Uses of IMailDestination in lumis.portal.activitystream.notifier.email
Methods in lumis.portal.activitystream.notifier.email that return types with arguments of type IMailDestination Modifier and Type Method Description protected Collection<IMailDestination>
EmailNotifier. getEmailDestinations(ActivityDocument.IActivity activity, Collection<UserConfig> users)
Generate a list of email destinations to be added to an email of the activity.
the default implementation adds all users that have an email to the list. -
Uses of IMailDestination in lumis.portal.sendmail
Methods in lumis.portal.sendmail that return IMailDestination Modifier and Type Method Description IMailDestination
ISendMailManager. createMailDestination()
Factory method for creating a new mail destination instance.IMailDestination
SendMailManager. createMailDestination()
Methods in lumis.portal.sendmail that return types with arguments of type IMailDestination Modifier and Type Method Description Collection<IMailDestination>
IMultipleMail. getDestinations()
Returns a collection of destinations for this mail. -
Uses of IMailDestination in lumis.portal.sendmail.dao
Methods in lumis.portal.sendmail.dao that return IMailDestination Modifier and Type Method Description IMailDestination
ISendMailDao. createMailDestination()
Factory method for creating a new mail destination instance.IMailDestination
ISendMailDao. fetchNextPendingDestination(IMultipleMail multipleMail)
Returns for the next destination pending for sending for the given mail, and marks its status as sending.Methods in lumis.portal.sendmail.dao with parameters of type IMailDestination Modifier and Type Method Description ISingleMail
ISendMailDao. createSingleMail(IMultipleMail mail, IMailDestination destination)
Returns aISingleMail
instance as the given mail addressed to the given destination. -
Uses of IMailDestination in lumis.portal.sendmail.dao.hibernate
Methods in lumis.portal.sendmail.dao.hibernate that return IMailDestination Modifier and Type Method Description IMailDestination
SendMailDaoHib. createMailDestination()
IMailDestination
SendMailDaoHib. fetchNextPendingDestination(IMultipleMail mail)
Methods in lumis.portal.sendmail.dao.hibernate with parameters of type IMailDestination Modifier and Type Method Description ISingleMail
SendMailDaoHib. createSingleMail(IMultipleMail mail, IMailDestination destination)
This implementation actually uses the same mail instance, only sets the values in the to, cc and bcc fields.
-