Java Code Examples for org.camunda.bpm.engine.impl.interceptor.CommandContext#getReadOnlyIdentityProvider()
The following examples show how to use
org.camunda.bpm.engine.impl.interceptor.CommandContext#getReadOnlyIdentityProvider() .
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: KeycloakUserQuery.java From camunda-bpm-identity-keycloak with Apache License 2.0 | 4 votes |
protected KeycloakIdentityProviderSession getKeycloakIdentityProvider(CommandContext commandContext) { return (KeycloakIdentityProviderSession) commandContext.getReadOnlyIdentityProvider(); }
Example 2
Source File: KeycloakGroupQuery.java From camunda-bpm-identity-keycloak with Apache License 2.0 | 4 votes |
protected KeycloakIdentityProviderSession getKeycloakIdentityProvider(CommandContext commandContext) { return (KeycloakIdentityProviderSession) commandContext.getReadOnlyIdentityProvider(); }
Example 3
Source File: LdapGroupQuery.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
protected LdapIdentityProviderSession getLdapIdentityProvider(CommandContext commandContext) { return (LdapIdentityProviderSession) commandContext.getReadOnlyIdentityProvider(); }
Example 4
Source File: LdapUserQueryImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
protected LdapIdentityProviderSession getLdapIdentityProvider(CommandContext commandContext) { return (LdapIdentityProviderSession) commandContext.getReadOnlyIdentityProvider(); }
Example 5
Source File: DbTenantQueryImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
protected DbReadOnlyIdentityServiceProvider getIdentityProvider(CommandContext commandContext) { return (DbReadOnlyIdentityServiceProvider) commandContext.getReadOnlyIdentityProvider(); }
Example 6
Source File: DbGroupQueryImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
protected DbReadOnlyIdentityServiceProvider getIdentityProvider(CommandContext commandContext) { return (DbReadOnlyIdentityServiceProvider) commandContext.getReadOnlyIdentityProvider(); }
Example 7
Source File: DbUserQueryImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
private DbReadOnlyIdentityServiceProvider getIdentityProvider(CommandContext commandContext) { return (DbReadOnlyIdentityServiceProvider) commandContext.getReadOnlyIdentityProvider(); }
Example 8
Source File: NativeUserQueryImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
private DbReadOnlyIdentityServiceProvider getIdentityProvider(CommandContext commandContext) { return (DbReadOnlyIdentityServiceProvider) commandContext.getReadOnlyIdentityProvider(); }