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

org.molgenis.api.identities.GroupCommand 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.util.AutoGson;

@AutoValue
@AutoGson(autoValueClass = AutoValue_GroupCommand.class)
@SuppressWarnings("squid:S1610")
public abstract class GroupCommand {
  public abstract String getName();

  public abstract String getLabel();

  static GroupCommand createGroup(String name, String label) {
    return new AutoValue_GroupCommand(name, label);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy