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

org.molgenis.api.identities.GroupResponse 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.Group;

@AutoValue
@SuppressWarnings("squid:S1610")
public abstract class GroupResponse {
  public abstract String getName();

  public abstract String getLabel();

  static GroupResponse create(String name, String label) {
    return new AutoValue_GroupResponse(name, label);
  }

  static GroupResponse fromEntity(Group groupEntity) {
    return GroupResponse.create(groupEntity.getName(), groupEntity.getLabel());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy