Interface PropertiesFunctionResolver
- All Known Implementing Classes:
DefaultPropertiesFunctionResolver
public interface PropertiesFunctionResolver
Resolver for built-in and custom
PropertiesFunction
.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
addPropertiesFunction
(org.apache.camel.spi.PropertiesFunction function) Registers thePropertiesFunction
as a function to this component.Gets the functions registered in this properties component.boolean
hasFunction
(String name) Is there aPropertiesFunction
with the given name?org.apache.camel.spi.PropertiesFunction
Resolves the properties function with the given name
-
Field Details
-
RESOURCE_PATH
- See Also:
-
-
Method Details
-
addPropertiesFunction
void addPropertiesFunction(org.apache.camel.spi.PropertiesFunction function) Registers thePropertiesFunction
as a function to this component. -
getFunctions
Gets the functions registered in this properties component. -
hasFunction
Is there aPropertiesFunction
with the given name? -
resolvePropertiesFunction
Resolves the properties function with the given name- Parameters:
name
- the name of the properties function- Returns:
- the function or null if not found
-