org.kie.kogito.examples.ConfigBean Maven / Gradle / Ivy
package org.kie.kogito.examples;
@org.springframework.stereotype.Component
public class ConfigBean {
@org.springframework.beans.factory.annotation.Value("${kogito.service.url:#{null}}")
java.util.Optional kogitoService;
public String getServiceUrl() {
return kogitoService.orElse("");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy