Interface PropertyConfigurer

All Known Subinterfaces:
GeneratedPropertyConfigurer

public interface PropertyConfigurer
A marker interface to identify the object as being configurable via a configurer class.

This is used in Camel to have fast property configuration of Camel components invalid input: '&' endpoints, and for EIP patterns as well.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    configure(CamelContext camelContext, Object target, String name, Object value, boolean ignoreCase)
    Configures the property
  • Method Details

    • configure

      boolean configure(CamelContext camelContext, Object target, String name, Object value, boolean ignoreCase)
      Configures the property
      Parameters:
      camelContext - the Camel context
      target - the target instance such as Endpoint or Component.
      name - the property name
      value - the property value
      ignoreCase - whether to ignore case for matching the property name
      Returns:
      true if the configurer configured the property, false if the property does not exists