org.acme.travels.services.HelloService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-service-calls-quarkus
Show all versions of process-service-calls-quarkus
Kogito service invocation - Quarkus
package org.acme.travels.services;
import javax.enterprise.context.ApplicationScoped;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ApplicationScoped
public class HelloService {
private static final Logger logger = LoggerFactory.getLogger(GreetingTravellerService.class);
public Object hello(String name, Integer age) {
logger.info("Saying hello to {} with age {}", name, age);
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy