Interface ComponentModelDelegateRegistry
- All Known Implementing Classes:
- ComponentModelDelegateRegistryImpl
public interface ComponentModelDelegateRegistry
A Registry for 
ComponentModelDelegateFactories- 
Method SummaryModifier and TypeMethodDescriptionFetch theComponentModelDelegateFactoryregistered with the given typeIdget(GatewayContext context) Static accessor for theComponentModelDelegateRegistryinstance contained by the provided contextvoidregister(String componentTypeId, ComponentModelDelegateFactory factory) Register aComponentModelDelegateFactorywith its type IDvoidRemoves the delegate registered with the id from the set of those registered.
- 
Method Details- 
getStatic accessor for theComponentModelDelegateRegistryinstance contained by the provided context- Parameters:
- context- The current running- CommonContext
- Returns:
- The ComponentModelDelegateRegistryinstance
 
- 
registerRegister aComponentModelDelegateFactorywith its type ID- Parameters:
- componentTypeId- The component type ID associated with the factory
- factory- The factory to register
 
- 
findFetch theComponentModelDelegateFactoryregistered with the given typeId- Parameters:
- typeId- The component type ID
- Returns:
- An Optionalcontaining theComponentModelDelegateFactoryregistered with the given typeId or an empty Optional if no such factory is registered with the given type ID
 
- 
removeRemoves the delegate registered with the id from the set of those registered.- Parameters:
- componentTypeId- the id of the component type whose delegate should be removed from the registry.
 
 
-