Package com.atlassian.jira.workflow
Interface OSWorkflowConfigurator
- All Known Implementing Classes:
DefaultOSWorkflowConfigurator
public interface OSWorkflowConfigurator
Provides a way for JIRA to configure OSWorkflow
TypeResolver classes.- Since:
- v4.1.1
-
Method Summary
Modifier and TypeMethodDescriptionvoidregisterTypeResolver(String className, com.opensymphony.workflow.TypeResolver typeResolver) Registers aTypeResolverfor the given class.voidunregisterTypeResolver(String className, com.opensymphony.workflow.TypeResolver typeResolver) Unregisters aTypeResolverfrom the given class.
-
Method Details
-
registerTypeResolver
Registers aTypeResolverfor the given class. The last registered resolver against the class name will take effect.- Parameters:
className- the class name.typeResolver- the resolver to register; should not be null.
-
unregisterTypeResolver
Unregisters aTypeResolverfrom the given class. This class will no longer be mapped to any resolvers.- Parameters:
className- the class name.typeResolver- the resolver to unregister; should not be null.
-