subcategorylocalhome.java

来自「噶额外噶外骨骼感广泛高热感 就 啊啊」· Java 代码 · 共 45 行

JAVA
45
字号
  /*
   * @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 + =
减小字号Ctrl + -
显示快捷键?