InventoryEventFacade.java
357 Bytes
package fi.codecrew.moya.facade;
import javax.ejb.LocalBean;
import javax.ejb.Stateless;
import fi.codecrew.moya.model.InventoryEvent;
@Stateless
@LocalBean
public class InventoryEventFacade extends IntegerPkGenericFacade<InventoryEvent> {
public InventoryEventFacade() {
super(InventoryEvent.class);
// TODO Auto-generated constructor stub
}
}