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

com.hubspot.blazar.config.UiConfiguration Maven / Gradle / Ivy

The newest version!
package com.hubspot.blazar.config;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

import javax.validation.constraints.NotNull;

public class UiConfiguration {

  @NotNull
  private final String baseUrl;

  @JsonCreator
  public UiConfiguration(@JsonProperty("baseUrl") String baseUrl) {
    this.baseUrl = baseUrl;
  }

  public String getBaseUrl() {
    return baseUrl;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy