oparl-service/oparl-server/src/main/java/de/twomartens/oparlservice/configs/OParlServiceProperties.java

21 lines
481 B
Java

package de.twomartens.oparlservice.configs;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Data
@Configuration
@ConfigurationProperties(prefix = "de.twomartens.oparlservice")
public class OParlServiceProperties {
private final Template template = new Template();
@Data
public static class Template {
private String greeting;
private String url;
}
}