- package shiponline;
- import javax.ejb.*;
- import java.util.*;
- ;
- public interface VaoPortHome extends javax.ejb.EJBLocalHome {
- public Collection findAll() throws FinderException;
- public VaoPort findByPortCode(String code) throws FinderException;
- public VaoPort findByPortName(String name) throws FinderException;
- public VaoPort findByPrimaryKey(Integer vaoPortId) throws FinderException;
- }