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

org.molgenis.api.identities.UserResponse Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.api.identities;

import com.google.auto.value.AutoValue;
import org.molgenis.data.security.auth.User;

@AutoValue
@SuppressWarnings(
    "squid:S1610") // Abstract classes without fields should be converted to interfaces
public abstract class UserResponse {
  public abstract String getId();

  public abstract String getUsername();

  static UserResponse fromEntity(User user) {
    return new AutoValue_UserResponse(user.getId(), user.getUsername());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy