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

com.github.attemper.java.sdk.micro.web.properties.WebProperties Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
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