Whether you use WireBox standalone or within a ColdBox context, a Binder gets a structure of configuration properties so it can use them whenever you are configuring it or declaring mappings. If you are in standalone mode, the Injector can be constructed with a properties structure that will be passed to the binder for usage.
{% hint style="info" %} If you are in a ColdBox application, the ColdBox application configuration structure is passed to you. {% endhint %}
You can then use these properties with the following methods in your Binder:
getProperty( name, [default] )
: Get a specific propertygetProperties()
: Get all the properties structurepropertyExists( name )
: Check if a property existssetProperty( name, value )
: Dynamically add properties to the structure
// Init with your own properties
new wirebox.system.ioc.Injector( properties = myProps )