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

io.stargate.it.http.models.KeycloakUser Maven / Gradle / Ivy

There is a newer version: 2.1.0-BETA-16
Show newest version
package io.stargate.it.http.models;

import java.util.List;
import java.util.Map;

public class KeycloakUser {

  private String username;
  private boolean enabled;
  private boolean emailVerified;
  private Map> attributes;
  private List credentials;

  public KeycloakUser() {}

  public KeycloakUser(
      String username,
      boolean enabled,
      boolean emailVerified,
      Map> attributes,
      List credentials) {
    this.username = username;
    this.enabled = enabled;
    this.emailVerified = emailVerified;
    this.attributes = attributes;
    this.credentials = credentials;
  }

  public String getUsername() {
    return username;
  }

  public void setUsername(String username) {
    this.username = username;
  }

  public boolean isEnabled() {
    return enabled;
  }

  public void setEnabled(boolean enabled) {
    this.enabled = enabled;
  }

  public boolean isEmailVerified() {
    return emailVerified;
  }

  public void setEmailVerified(boolean emailVerified) {
    this.emailVerified = emailVerified;
  }

  public Map> getAttributes() {
    return attributes;
  }

  public void setAttributes(Map> attributes) {
    this.attributes = attributes;
  }

  public List getCredentials() {
    return credentials;
  }

  public void setCredentials(List credentials) {
    this.credentials = credentials;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy