Liking cljdoc? Tell your friends :D

cmr.authz.acls

This namespace is provided for common code needed by the roles and permissions namespaces.

This namespace is provided for common code needed by the roles and
permissions namespaces.
raw docstring

cmr.authz.permissions

Permissions for CMR OPeNDAP are utilized in the application routes when it is necessary to limit access to resources based on the specific capabilities granted to a user.

Permissions are included in the route definition along with the route's handler. For example:

[...
 ["my/route" {
  :get {:handler my-handlers/my-route
        :permissions #{:read}}
  :post ...}]
 ...]
Permissions for CMR OPeNDAP are utilized in the application routes when it is
necessary to limit access to resources based on the specific capabilities
granted to a user.

Permissions are included in the route definition along with the route's
handler. For example:
```
[...
 ["my/route" {
  :get {:handler my-handlers/my-route
        :permissions #{:read}}
  :post ...}]
 ...]
raw docstring

cmr.authz.roles

Roles for CMR OPeNDAP are utilized in the application routes when it is necessary to limit access to resources based on the role of a user.

Roles are included in the route definition along with the route's handler. For example:

[...
 ["my/route" {
  :get {:handler my-handlers/my-route
        :roles #{:admin}}
  :post ...}]
 ...]
Roles for CMR OPeNDAP are utilized in the application routes when it is
necessary to limit access to resources based on the role of a user.

Roles are included in the route definition along with the route's handler.
For example:
```
[...
 ["my/route" {
  :get {:handler my-handlers/my-route
        :roles #{:admin}}
  :post ...}]
 ...]
raw docstring

cmr.authz.token

The functions in this API are responsible for such things as making queries to CMR Access Control to get token-to-user mappings, extracting tokens from request headers, and defining caching keys and related tasks.

The functions in this API are responsible for such things as making queries
to CMR Access Control to get token-to-user mappings, extracting tokens from
request headers, and defining caching keys and related tasks.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close