Java Code Examples for org.keycloak.events.admin.OperationType#name()
The following examples show how to use
org.keycloak.events.admin.OperationType#name() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: KeycloakMetrics.java From keycloak-extension-playground with Apache License 2.0 | 4 votes |
private String buildCounterName(OperationType type) { return ADMIN_EVENT_PREFIX + type.name(); }
Example 2
Source File: PrometheusExporter.java From keycloak-metrics-spi with Apache License 2.0 | 4 votes |
private String buildCounterName(OperationType type) { return ADMIN_EVENT_PREFIX + type.name(); }