Interface InterceptorRegistry
-
- All Known Implementing Classes:
DefaultInterceptorRegistry
public interface InterceptorRegistryAbstraction of the interceptor registry responsible for getting life-cycle handle interceptors for mapped jalo item by their type code, seeInterceptorMapping.getTypeCode()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<InitDefaultsInterceptor>getInitDefaultsInterceptors(java.lang.String type)java.util.Collection<LoadInterceptor>getLoadInterceptors(java.lang.String type)java.util.Collection<PrepareInterceptor>getPrepareInterceptors(java.lang.String type)java.util.Collection<RemoveInterceptor>getRemoveInterceptors(java.lang.String type)java.util.Collection<ValidateInterceptor>getValidateInterceptors(java.lang.String type)
-
-
-
Method Detail
-
getPrepareInterceptors
java.util.Collection<PrepareInterceptor> getPrepareInterceptors(java.lang.String type)
- Parameters:
type- type code mapping string- Returns:
- collection containing
PrepareInterceptorfor specific type code mapping
-
getLoadInterceptors
java.util.Collection<LoadInterceptor> getLoadInterceptors(java.lang.String type)
- Parameters:
type- type code mapping string- Returns:
- collection containing
LoadInterceptorfor specific type code mapping
-
getRemoveInterceptors
java.util.Collection<RemoveInterceptor> getRemoveInterceptors(java.lang.String type)
- Parameters:
type- type code mapping string- Returns:
- collection containing
RemoveInterceptorfor specific type code mapping
-
getValidateInterceptors
java.util.Collection<ValidateInterceptor> getValidateInterceptors(java.lang.String type)
- Parameters:
type- type code mapping string- Returns:
- collection containing
ValidateInterceptorfor specific type code mapping
-
getInitDefaultsInterceptors
java.util.Collection<InitDefaultsInterceptor> getInitDefaultsInterceptors(java.lang.String type)
- Parameters:
type- type code mapping string- Returns:
- collection containing
InitDefaultsInterceptorfor specific type code mapping
-
-