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

zipkin2.elasticsearch.IndexTemplates Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The OpenZipkin Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package zipkin2.elasticsearch;

import com.google.auto.value.AutoValue;

@AutoValue
abstract class IndexTemplates {
  static Builder newBuilder() {
    return new AutoValue_IndexTemplates.Builder();
  }

  abstract BaseVersion version();

  abstract char indexTypeDelimiter();

  abstract String span();

  abstract String dependency();

  abstract String autocomplete();

  @AutoValue.Builder
  interface Builder {
    Builder version(BaseVersion version);

    Builder indexTypeDelimiter(char indexTypeDelimiter);

    Builder span(String span);

    Builder dependency(String dependency);

    Builder autocomplete(String autocomplete);

    IndexTemplates build();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy