Interface MailManagerFactory
-
- All Superinterfaces:
ManagerFactory<MailManager,MailManager.FactoryData>
- All Known Implementing Classes:
SmtpManager.SMTPManagerFactory
public interface MailManagerFactory extends ManagerFactory<MailManager,MailManager.FactoryData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MailManager
createManager(java.lang.String name, MailManager.FactoryData data)
Creates a Manager.
-
-
-
Method Detail
-
createManager
MailManager createManager(java.lang.String name, MailManager.FactoryData data)
Description copied from interface:ManagerFactory
Creates a Manager.- Specified by:
createManager
in interfaceManagerFactory<MailManager,MailManager.FactoryData>
- Parameters:
name
- The name of the entity to manage.data
- The data required to create the entity.- Returns:
- A Manager for the entity.
-
-