org.kie.kogito.examples.CalculationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbpm-quarkus-example
Show all versions of jbpm-quarkus-example
Order management service
package org.kie.kogito.examples;
import java.util.Random;
import javax.enterprise.context.ApplicationScoped;
import org.kie.kogito.examples.demo.Order;
@ApplicationScoped
public class CalculationService {
private Random random = new Random();
public Order calculateTotal(Order order) {
order.setTotal(random.nextDouble());
return order;
}
}