com.github.attemper.java.sdk.micro.web.properties.WebProperties Maven / Gradle / Ivy
package com.github.attemper.java.sdk.micro.web.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "dispatch.web")
public class WebProperties {
private String serviceName;
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy