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

io.avaje.aws.appconfig.DResult Maven / Gradle / Ivy

package io.avaje.aws.appconfig;

final class DResult implements AppConfigFetcher.Result {

  private final String version;
  private final String contentType;
  private final String body;
  public DResult(String version, String contentType, String body) {
    this.version = version;
    this.contentType = contentType;
    this.body = body;
  }

  @Override
  public String version() {
    return version;
  }

  @Override
  public String contentType() {
    return contentType;
  }

  @Override
  public String body() {
    return body;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy