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

pl.allegro.tech.hermes.management.config.JerseyProperties Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package pl.allegro.tech.hermes.management.config;

import java.util.ArrayList;
import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "jersey")
public class JerseyProperties {

  private List packagesToScan = new ArrayList<>();
  private String filterStaticContentRegexp = "(/status/|/assets/|/favicon.ico).*";

  public List getPackagesToScan() {
    return packagesToScan;
  }

  public void setPackagesToScan(List packagesToScan) {
    this.packagesToScan = packagesToScan;
  }

  public String getFilterStaticContentRegexp() {
    return filterStaticContentRegexp;
  }

  public void setFilterStaticContentRegexp(String filterStaticContentRegexp) {
    this.filterStaticContentRegexp = filterStaticContentRegexp;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy