Interface CustomEmailMappingService
-
- All Known Implementing Classes:
CustomEmailMappingServiceImpl
public interface CustomEmailMappingService
Custom EMail Mapping Service
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addCustomMapping(String from, String to)
Add custom mappingvoid
deleteCustomMapping(String from, String to)
Delete custom mappingSet<CustomMapping>
getCustomMappings()
Get the list of custom mappingsList<String>
getEmailMappingKeys()
Gets the list of email mapping keysvoid
registerEMailMappingKey(String emailMappingKey)
Registers an email mapping key with the existing list of email mapping keys
-
-
-
Method Detail
-
getCustomMappings
Set<CustomMapping> getCustomMappings()
Get the list of custom mappings- Returns:
Set
<CustomMapping
>
-
addCustomMapping
void addCustomMapping(String from, String to)
Add custom mapping- Parameters:
from
-to
-
-
deleteCustomMapping
void deleteCustomMapping(String from, String to)
Delete custom mapping- Parameters:
from
-to
-
-
getEmailMappingKeys
List<String> getEmailMappingKeys()
Gets the list of email mapping keys- Returns:
- Email mapping keys
-
registerEMailMappingKey
void registerEMailMappingKey(String emailMappingKey)
Registers an email mapping key with the existing list of email mapping keys- Parameters:
emailMappingKey
- emailMappingKey to register
-
-