⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itemlocalhome.java

📁 噶额外噶外骨骼感广泛高热感 就 啊啊
💻 JAVA
字号:
  /*
   * @author                        : Sujatha
   * @Version                       : 1.0
   *
   * Development Environment        : Oracle9i JDeveloper
   * Name of the File               : ItemLocalHome.java
   * Creation/Modification History  :
   *
   * Sujatha   11-Jan-2003      Created
   *
   */
  package oracle.otnsamples.vsm.entities;

  import java.util.Collection;

  // EJB imports
  import javax.ejb.CreateException;
  import javax.ejb.EJBLocalHome;
  import javax.ejb.FinderException;

  /**
   * Home interface for Item entity. The interface defines create() and finder
   * methods for the entity. Generated by Oracle9i JDeveloper Tool.
   */
  public interface ItemLocalHome extends EJBLocalHome {

    ItemLocal create(  ) throws CreateException;

    ItemLocal create( String id, String image, String shopID, String subcatID )
                      throws CreateException;

    ItemLocal findByPrimaryKey( String primaryKey )
                                throws FinderException;

    Collection findAll(  ) throws FinderException;

    Collection findItemsInShop( String keyword, String shopID, String langID )
                                throws FinderException;

    Collection findBySubCategory( String subCatID, String langID )
                                  throws FinderException;

    Collection findTopItemsInShop( String shopID, String langID, int count )
                                   throws FinderException;

    Collection findByKeyword( String keyword, String langID )
                              throws FinderException;

    Collection findByLanguage( String item, String langID )
                               throws FinderException;
  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -