📄 subcategorylocalhome.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : SubCategoryLocalHome.java
* Creation/Modification History :
*
* Neelesh 11-Jan-2003 Created
*
*/
package oracle.otnsamples.vsm.entities;
import java.util.Collection;
import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
import javax.ejb.FinderException;
/**
* Home interface for SubCategory entity. The interface defines create() and
* finder methods for the entity. Generated by Oracle9i JDeveloper Tool.
*/
public interface SubCategoryLocalHome extends EJBLocalHome {
SubCategoryLocal create( ) throws CreateException;
SubCategoryLocal create( String id, String catID, String langID,
String shopID, String name )
throws CreateException;
Collection findAll( ) throws FinderException;
SubCategoryLocal findByPrimaryKey( SubCategoryPK primaryKey )
throws FinderException;
Collection findByShopAndLanguage( String shopID, String langID )
throws FinderException;
Collection findByName( String keyword, String shopID, String langID )
throws FinderException;
Collection findByID( String subCatID ) throws FinderException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -