############### Configurability ############### ******** Overview ******** Valence is a sophisticated engine and allowing users to tailor it exactly how they need it is intrinsic to its value. Each extension should be designed with these users in mind, and built from the ground up to have flexibility where it needs to. We've provided quite a bit of framework to support your development effort, and you can focus on what's unique and special about your extension while mostly staying out of boilerplate and orchestration. Both Adapters and Filters can be user-configurable, and as you'd expect you declare support for this functionality by implementing certain interfaces: Adapter interfaces: * :doc:`/adapter-interfaces/configurable-source-adapter` - if you're a source Adapter * :doc:`/adapter-interfaces/configurable-target-adapter` - if you're a target Adapter .. tip:: You might implement both of these if your Adapter can both send and receive data. Filter interfaces: * :doc:`/filter-interfaces/configurable-per-link-filter` - configurations that are agnostic of any particular mapping * :doc:`/filter-interfaces/configurable-per-mapping-filter` - configurations that depend on a mapping to provide a value or field ********* Apex-side ********* Once you implement one of the configuration-related interfaces, you'll see some standardized methods be required. They fall into three groups: * Asking your extension for information about how it can be configured * Asking your extension to explain what a particular configuration does * Handing configuration details to your extension at runtime You will never be responsible for storing configuration data between runs, or knowing where to go find it. At runtime Valence hands you exactly the configuration information you need, when you need it. .. tip:: We always want users to be in the driver's seat and understand what their engine is doing. Explaining your configurations is a really important part of helping users to understand the effects of their decisions. Take time to design a thoughtful and clear response to your implemented explain method. .. code-block:: java :caption: Example Explain Method public String explainFilterConfiguration(String configurationData) { try { Configuration config = buildConfiguration(configurationData); String message = 'A source field called {0} will be added to each record that is actually a sub-object built as follows: