1 22 package org.jboss.test.timer.interfaces; 23 24 29 public interface TimerEntityHome 30 extends javax.ejb.EJBHome 31 { 32 public static final String COMP_NAME="java:comp/env/ejb/test/timer/TimerEntity"; 33 public static final String JNDI_NAME="ejb/test/timer/TimerEntity"; 34 public static final String SECURED_JNDI_NAME="ejb/test/timer/SecuredTimerEntity"; 35 36 public org.jboss.test.timer.interfaces.TimerEntity create(java.lang.Integer pk) 37 throws javax.ejb.CreateException ,java.rmi.RemoteException ; 38 39 public org.jboss.test.timer.interfaces.TimerEntity findByPrimaryKey(java.lang.Integer pk) 40 throws javax.ejb.FinderException ,java.rmi.RemoteException ; 41 42 } 43 | Popular Tags |