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

io.automatiko.engine.quarkus.ittests.CalculationService Maven / Gradle / Ivy

There is a newer version: 0.39.0
Show newest version

package io.automatiko.engine.quarkus.ittests;

import java.util.Random;

import jakarta.enterprise.context.ApplicationScoped;

@ApplicationScoped
public class CalculationService {

	private Random random = new Random();

	public Order calculateTotal(Order order) {
		order.setTotal(random.nextDouble());

		return order;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy