All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kie.kogito.examples.CalculationService Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy