Interface MacroMigrationManager
-
- All Known Implementing Classes:
DefaultMacroMigrationManager
public interface MacroMigrationManager
- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MacroMigration
getMacroMigration(String macroName)
Returns theMacroMigration
for the given macro.
-
-
-
Method Detail
-
getMacroMigration
MacroMigration getMacroMigration(String macroName)
Returns theMacroMigration
for the given macro.If a custom
MacroMigration
is registered for this macro name it will be returned, otherwise if the macro implements theMacro
interface it will return aMacroMigration
based on the type of macro.- Parameters:
macroName
-- Returns:
- a macro migration. Cannot be null.
-
-