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

org.graylog2.rest.models.system.codecs.responses.AutoValue_CodecTypeInfo Maven / Gradle / Ivy

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

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

final class AutoValue_CodecTypeInfo extends $AutoValue_CodecTypeInfo {
  AutoValue_CodecTypeInfo(String type, String name,
      Map> requestedConfiguration) {
    super(type, name, requestedConfiguration);
  }

  @JsonIgnore
  public final String getType() {
    return type();
  }

  @JsonIgnore
  public final String getName() {
    return name();
  }

  @JsonIgnore
  public final Map> getRequestedConfiguration() {
    return requestedConfiguration();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy