Each mechanism definition entry in the catalogue contains the following properties:
id
- A mandatory unique identifier of the mechanism. Identifiers are used to reference the required mechanism within a rule, respectively its pipelines. You can choose whatever identifier, you want. It is just a name. It must however be unique across all defined mechanisms of a particular mechanism category (like authenticator, authorizer, etc.).
type
- The mandatory specific type of the mechanism in the given category.
config
- The mechanism’s specific configuration if required by the type.
Every mechanism type can be configured as many times as needed. However, for those, which don’t have a configuration, it doesn’t really make sense, as all of them would behave the same way.
For example, your authenticator definitions could look like this:
mechanisms:
authenticators:
- id: anon1
type: anonymous
- id: anon2
type: anonymous
- id: anon3
type: anonymous
config:
subject: anon
- id: anon4
type: anonymous
config:
subject: bla
The above snippet configures four different instances of the anonymous authenticator mechanism, with anon1
and anon2
being configured identically (as no configuration is provided), and anon3
and anon4
being different in their configuration. Since the first two mentioned behave the same way (both will set the Subject ID to anonymous
), there is actually no need to define two instances of them.