Interface PropertiesFunctionResolver

All Known Implementing Classes:
DefaultPropertiesFunctionResolver

public interface PropertiesFunctionResolver
Resolver for built-in and custom PropertiesFunction.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addPropertiesFunction(org.apache.camel.spi.PropertiesFunction function)
    Registers the PropertiesFunction as a function to this component.
    Map<String,org.apache.camel.spi.PropertiesFunction>
    Gets the functions registered in this properties component.
    boolean
    Is there a PropertiesFunction with the given name?
    org.apache.camel.spi.PropertiesFunction
    Resolves the properties function with the given name
  • Field Details

  • Method Details

    • addPropertiesFunction

      void addPropertiesFunction(org.apache.camel.spi.PropertiesFunction function)
      Registers the PropertiesFunction as a function to this component.
    • getFunctions

      Map<String,org.apache.camel.spi.PropertiesFunction> getFunctions()
      Gets the functions registered in this properties component.
    • hasFunction

      boolean hasFunction(String name)
      Is there a PropertiesFunction with the given name?
    • resolvePropertiesFunction

      org.apache.camel.spi.PropertiesFunction resolvePropertiesFunction(String name)
      Resolves the properties function with the given name
      Parameters:
      name - the name of the properties function
      Returns:
      the function or null if not found