Package com.chutneytesting.action.domain
Interface ActionTemplateRegistry
-
- All Known Implementing Classes:
DefaultActionTemplateRegistry
public interface ActionTemplateRegistryRegistry forActionTemplate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<ActionTemplate>getAll()Optional<ActionTemplate>getByIdentifier(String identifier)voidrefresh()Refresh all availableActionTemplatebased on givenActionTemplateLoader.
Main use case, except for initialization, is whenActionclasses are added to the classpath at runtime.
-
-
-
Method Detail
-
refresh
void refresh()
Refresh all availableActionTemplatebased on givenActionTemplateLoader.
Main use case, except for initialization, is whenActionclasses are added to the classpath at runtime.
-
getByIdentifier
Optional<ActionTemplate> getByIdentifier(String identifier)
- Returns:
- a
ActionTemplateor empty if the given type did not matched any registeredActionTemplate
-
getAll
Collection<ActionTemplate> getAll()
-
-