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

com.naharoo.commons.mstoolkit.rest.exceptionhandler.RestExceptionHandlerProperties Maven / Gradle / Ivy

There is a newer version: 0.7.12
Show newest version
package com.naharoo.commons.mstoolkit.rest.exceptionhandler;

import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.Map;

@ConfigurationProperties(prefix = "ms-toolkit.rest-exception-handler.handlers")
public class RestExceptionHandlerProperties {

  private Map enabled;

  public Map getEnabled() {
    return enabled;
  }

  public void setEnabled(final Map enabled) {
    this.enabled = enabled;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy