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

org.graylog2.web.AutoValue_ChunkDescription Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.web;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import java.util.List;

final class AutoValue_ChunkDescription extends $AutoValue_ChunkDescription {
  AutoValue_ChunkDescription(long size, String entry, List css) {
    super(size, entry, css);
  }

  @JsonIgnore
  public final long getSize() {
    return size();
  }

  @JsonIgnore
  public final String getEntry() {
    return entry();
  }

  @JsonIgnore
  public final List getCss() {
    return css();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy