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); }