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

org.graylog2.rest.models.system.contentpacks.responses.AutoValue_ContentPackInstallationsResponse Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.graylog2.rest.models.system.contentpacks.responses;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Set;
import org.graylog2.contentpacks.model.ContentPackInstallation;

final class AutoValue_ContentPackInstallationsResponse extends $AutoValue_ContentPackInstallationsResponse {
  AutoValue_ContentPackInstallationsResponse(long total,
      Set contentPackInstallations) {
    super(total, contentPackInstallations);
  }

  @JsonIgnore
  public final long getTotal() {
    return total();
  }

  @JsonIgnore
  public final Set getContentPackInstallations() {
    return contentPackInstallations();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy