The Service Implementation
In this section, let us create a simple Service in Java. The implementation’s class is called JavaAdder and has one method, add, that takes two doubles. The method returns a double that is the sum of its arguments.
package examples.adder.service.JavaAdder;
public class JavaAdder {
public double add(double a, double b) {
return a + b;
}
}