ShiponlineBean.java~21~
上传用户:jnhyscl
上传日期:2010-03-08
资源大小:345k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. package shiponline;
  2. import javax.naming.*;
  3. import javax.ejb.*;
  4. import com.borland.dx.dataset.*;
  5. public class ShiponlineBean implements SessionBean {
  6.   SessionContext sessionContext;
  7.   transient Context context;
  8.   public void ejbRemove() {
  9.     /**@todo Complete this method*/
  10.   }
  11.   public void ejbActivate() {
  12.   }
  13.   public void ejbPassivate() {
  14.     /**@todo Complete this method*/
  15.   }
  16.   public void setSessionContext(SessionContext sessionContext) {
  17.     this.sessionContext = sessionContext;
  18.   }
  19.   public int addVaoPort(DataSetData[] dataArray, String code, String name) {
  20.    /*
  21.     try{
  22.       try{
  23.         vaoPortHome.findByCode(code);
  24.         return 1;
  25.       }catch (ObjectNotFoundException ex){
  26.       }
  27.       try{
  28.         vaoPortHome.findByName(name);
  29.         return 2;
  30.       }catch(ObjectNotFoundException exc){
  31.       }
  32.       //serverDataModule.addVaoPort(dataArray);
  33.       return 3;
  34.    }catch(Exception e){
  35.      return 4;
  36.    }
  37.     */
  38.    return 3;
  39.   }
  40.  private javax.naming.Context getInitialContext() {
  41.     try {
  42.       if (context == null) {
  43.         context = new javax.naming.InitialContext();
  44.       }
  45.       return context;
  46.     }
  47.     catch (Exception ex) {
  48.       throw new EJBException(ex);
  49.     }
  50.   }
  51.   public void ejbCreate() throws CreateException {
  52.     /**@todo Complete this method*/
  53.   }
  54.   public void ejbCreate(String code,String name) throws CreateException  {
  55.     /**@todo Complete this method*/
  56.   }
  57. }