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

org.molgenis.data.security.permission.model.LabelledObject Maven / Gradle / Ivy

package org.molgenis.data.security.permission.model;

import com.google.auto.value.AutoValue;
import org.molgenis.util.AutoGson;

@AutoValue
@AutoGson(autoValueClass = AutoValue_LabelledObject.class)
@SuppressWarnings(
    "squid:S1610") // Abstract classes without fields should be converted to interfaces
public abstract class LabelledObject {
  public abstract String getId();

  public abstract String getLabel();

  public static LabelledObject create(String id, String label) {
    return new AutoValue_LabelledObject(id, label);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy