21 lines
486 B
Java
21 lines
486 B
Java
package com.kamco.cd.kamcoback.config;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Getter
|
|
@Setter
|
|
@Component
|
|
@ConfigurationProperties(prefix = "inference")
|
|
public class InferenceProperties {
|
|
|
|
private String nfs;
|
|
private String url;
|
|
private String batchUrl;
|
|
private String geojsonDir;
|
|
private String jarPath;
|
|
private String inferenceServerName;
|
|
}
|