1 4 package test.interfaces; 5 6 13 public interface StatefulHome 14 extends javax.ejb.EJBHome  15 { 16 public static final String COMP_NAME="java:comp/env/ejb/Stateful"; 17 public static final String JNDI_NAME="Stateful"; 18 19 public test.interfaces.Stateful createWithParam(java.lang.String x) 20 throws javax.ejb.CreateException ,java.rmi.RemoteException ; 21 22 public test.interfaces.Stateful create(java.lang.String x) 23 throws javax.ejb.CreateException ,java.rmi.RemoteException ; 24 25 } 26 | Popular Tags |