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

com.hubspot.singularity.config.SentryConfiguration Maven / Gradle / Ivy

package com.hubspot.singularity.config;

import org.hibernate.validator.constraints.NotEmpty;

import com.fasterxml.jackson.annotation.JsonProperty;

public class SentryConfiguration {

  @NotEmpty
  @JsonProperty("dsn")
  private String dsn;

  @JsonProperty("prefix")
  private String prefix = "";

  public String getDsn() {
    return dsn;
  }

  public void setDsn(String dsn) {
    this.dsn = dsn;
  }

  public String getPrefix() {
    return prefix;
  }

  public void setPrefix(String prefix) {
    this.prefix = prefix;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy