All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.common.auth.SimpleAuthenticationBuilder Maven / Gradle / Ivy

There is a newer version: 8.5.10
Show newest version
package io.camunda.common.auth;

import io.camunda.common.auth.Authentication.AuthenticationBuilder;

public class SimpleAuthenticationBuilder implements AuthenticationBuilder {
  private SimpleConfig simpleConfig;

  public SimpleAuthenticationBuilder withSimpleConfig(SimpleConfig simpleConfig) {
    this.simpleConfig = simpleConfig;
    return this;
  }

  @Override
  public Authentication build() {
    return new SimpleAuthentication(simpleConfig);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy