Package com.chutneytesting.action.domain
Interface ActionTemplateRegistry
- All Known Implementing Classes:
DefaultActionTemplateRegistry
public interface ActionTemplateRegistry
Registry for
ActionTemplate.-
Method Summary
Modifier and TypeMethodDescriptiongetAll()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 Details
-
refresh
void refresh()Refresh all availableActionTemplatebased on givenActionTemplateLoader.
Main use case, except for initialization, is whenActionclasses are added to the classpath at runtime. -
getByIdentifier
- Returns:
- a
ActionTemplateor empty if the given type did not matched any registeredActionTemplate
-
getAll
Collection<ActionTemplate> getAll()
-