summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Micah Examples/src/examples/entity/joined/interfaces/RoadVehicleStatelessJoined.java
blob: b205c01a5ebef3da7173debe04a5bf3a1d178f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package examples.entity.joined.interfaces;

import java.util.List;

import javax.ejb.Remote;

@Remote
public interface RoadVehicleStatelessJoined {
	public void doSomeStuff();
	
	public List getAllCars();
}