package examples.entity.joined.interfaces; import java.util.List; import javax.ejb.Remote; @Remote public interface RoadVehicleStatelessJoined { public void doSomeStuff(); public List getAllCars(); }