> For the complete documentation index, see [llms.txt](https://wirebox.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wirebox.ortusbooks.com/usage/injection-dsl/coldbox-namespace.md).

# ColdBox Namespace

This namespace is a combination of namespaces that are only active when used within a ColdBox application:

## Single Stage Injections

| **DSL**   | **Description**                      |
| --------- | ------------------------------------ |
| `coldbox` | Get the coldbox controller reference |

## Two Stage Injections

| **DSL**                      | **Description**                                             |
| ---------------------------- | ----------------------------------------------------------- |
| `coldbox:asyncManager`       | The global Async Manager                                    |
| `coldbox:appScheduler`       | The global application scheduler object                     |
| `coldbox:configSettings`     | Get a reference to the application's configuration settings |
| `coldbox:coldboxSettings`    | The global ColdBox internal settings struct                 |
| `coldbox:dataMarshaller`     | Get a reference to the application's data marshaller        |
| `coldbox:flash`              | Get a reference to the application's flash scope object     |
| `coldbox:handlerService`     | Get a reference to the handler service                      |
| `coldbox:interceptorService` | Get a reference to the interceptor service                  |
| `coldbox:loaderService`      | Get a reference to the loader service                       |
| `coldbox:moduleService`      | Get a reference to the ColdBox Module Service               |
| `coldbox:renderer`           | Get a reference to a ColdBox renderer object                |
| `coldbox:requestContext`     | Get a reference to the current transient request context    |
| `coldbox:requestService`     | Get a reference to the request service                      |
| `coldbox:router`             | Get a reference to the application router object            |
| `coldbox:routingService`     | Get a reference to the routing service                      |
| `coldbox:schedulerService`   | Get a reference to the scheduler service                    |

## Three Stage Injections

| **DSL**                              | **Description**                                                             |
| ------------------------------------ | --------------------------------------------------------------------------- |
| `coldbox:coldboxSetting:{setting}`   | Get a setting from the ColdBox settings instead of the Application settings |
| `coldbox:setting:{setting}`          | Get the coldbox application *{setting}* setting and inject it               |
| `coldbox:setting:{setting}@{module}` | Get the coldbox application *{setting}* from the *{module}* and inject it   |
| `coldbox:interceptor:{name}`         | Get a reference of a named interceptor *{name}*                             |
| `coldbox:moduleSettings:{module}`    | Inject the entire *{module}* settings structure                             |
| `coldbox:moduleConfig:{module}`      | Inject the entire *{module}* configurations structureF                      |

## Four Stage Injections

| **DSL**                                   | **Description**                       |
| ----------------------------------------- | ------------------------------------- |
| `coldbox:moduleSettings:{module}:setting` | Inject a single setting from a module |

## Examples

```javascript
// some examples
property name="logbox" inject="logbox";
property name="rootLogger" inject="logbox:root";
property name="logger" inject="logbox:logger:model.com.UserService";
property name="moduleService" inject="coldbox:moduleService";
property name="producer" inject="coldbox:interceptor:MessageProducer";
property name="producer" inject="interceptor:MessageProducer";
property name="appPath" inject="coldbox:fwSetting:ApplicationPath";
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wirebox.ortusbooks.com/usage/injection-dsl/coldbox-namespace.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
