blob: 9f744196b3c97e6e4a5321ce33d7bd59df5a5c6a (
plain)
1
2
3
4
5
6
7
8
9
|
package examples.stateless.interfaces;
import javax.ejb.Remote;
@Remote
public interface Pricer {
public double getTaxLookup(double cost, String state);
public double getTaxInjection(double cost, String state);
}
|