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

org.molgenis.api.identities.UpdateIncludeCommand 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_UpdateIncludeCommand.class)
@SuppressWarnings("squid:S1610")
public abstract class UpdateIncludeCommand {

  public abstract String getRole();

  public static UpdateIncludeCommand create(String role) {
    return new AutoValue_UpdateIncludeCommand(role);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy