# Delegates

CBSecurity comes bundled with the following delegate objects that you can use in your user objects and provide them with security capabilities.

<table><thead><tr><th width="292">Delegate</th><th>Description</th></tr></thead><tbody><tr><td><code>Auth@cbsecurity</code></td><td>This delegate enables your application objects to deal with authentication features via delegation.</td></tr><tr><td><code>Authorizable@cbsecurity</code></td><td>This delegate adds authorization capabilities to your objects</td></tr><tr><td><code>JwtSubject@cbsecurity</code></td><td>This delegate adds JWT Subject methods to a target</td></tr></tbody></table>

### Auth\@cbsecurity

This delegate enables your application objects to deal with authentication features via delegation.

* `jwtAuth()`
* `cbSecure()`
* `auth()`

{% code lineNumbers="true" %}

```cfscript
component name="User" delegates="auth@cbSecurity"{

}
```

{% endcode %}

### Authorizable\@cbsecurity

This delegate adds authorization capabilities to your objects.

* `hasPermission()`
* `hasRole()`
* `isLoggedIn()`
* `guest()`
* `hasAll()`
* `hasNone()`
* `sameUser()`

```cfscript
component name="User" delegates="Authorizable@cbSecurity"{

}
```

### JwtSubject\@cbsecurity

This delegate adds JWT Subject methods to a target.

* `getJWTCustomClaims()`
* `getJWTScopes()`

```cfscript
component name="User" delegates="JwtSubject@cbSecurity"{

}
```


---

# Agent Instructions: 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:

```
GET https://coldbox-security.ortusbooks.com/usage/delegates.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
