Class MappingManager
java.lang.Object
com.aquima.interactions.portal.model.session.MappingManager
- All Implemented Interfaces:
IMappingManager
The mapping manager implementation that can be used for a specific application.
- Since:
- 7.2
- Author:
- Jon van Leuven
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetMapping
(String name) This method returns a mapping that is available for a specified name.String[]
This method returns all available mapping names.This method returns the process mapping if one is available.
-
Constructor Details
-
MappingManager
-
-
Method Details
-
getMapping
Description copied from interface:IMappingManager
This method returns a mapping that is available for a specified name.- Specified by:
getMapping
in interfaceIMappingManager
- Parameters:
name
- The name of the mapping.- Returns:
- The mapper, never null.
- Throws:
UnknownMappingException
- Is thrown when no mapping could be found for the specified name.
-
getMappingNames
Description copied from interface:IMappingManager
This method returns all available mapping names.- Specified by:
getMappingNames
in interfaceIMappingManager
- Returns:
- An array containing the available mapping names, never null, but can be an empty array.
-
getProcessMapping
Description copied from interface:IMappingManager
This method returns the process mapping if one is available.- Specified by:
getProcessMapping
in interfaceIMappingManager
- Returns:
- The process mapping, may be null.
-