Interstage Application Server/Interstage Web Server J2EE ユーザーズガイド
目次 索引 前ページ次ページ

第3部 EJB編> 第13章 Entity Beanの実装> 13.3 LocalHomeインタフェースの作成

13.3.1 記述例

 SampleLocalHomeという名前のインタフェースを設定した場合の例を以下に示します。

package Sample; 

  import javax.ejb.*; 
  import java.util.*; 

  public interface SampleLocalHome extends EJBLocalHome
  {

      /* createメソッドの定義 */
      public SampleRemote create(Integer code, String name, String desc  ) 
                           throws CreateException; 

      /* findByPrimaryKeyメソッドの定義 */
      public SampleRemote findByPrimaryKey(SampleBeanPrimaryKey primaryKey) 
                           throws FinderException; 

      /* find<METHOD>メソッドの定義 */
      public Enumeration findSampleBigCode(Integer bigcode) 
                          throws FinderException;

/* find<METHOD>メソッドの定義 */ public Collection findSampleByName(String name) throws FinderException;
  }

目次 索引 前ページ次ページ

Copyright 2008 FUJITSU LIMITED