VaoPortHome.java~11~
上传用户:jnhyscl
上传日期:2010-03-08
资源大小:345k
文件大小:1k
- package shiponline;
- import javax.ejb.*;
- import java.util.*;
- ;
- public interface VaoPortHome extends javax.ejb.EJBLocalHome {
- public VaoPort create(Integer vaoPortId) throws CreateException;
- public VaoPort create(Long vaoPortId) throws CreateException;
- 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;
- }