TimerSLSBHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.timer.interfaces; /** * Home interface for test/timer/TimerSLSB. * @author Thomas Diesler * @author Scott.Stark@jboss.org * @version $Revision: 1.1 $ */ public interface TimerSLSBHome extends javax.ejb.EJBHome { public static final String COMP_NAME="java:comp/env/ejb/test/timer/TimerSLSB"; public static final String JNDI_NAME="ejb/test/timer/TimerSLSB"; public static final String SECURED_JNDI_NAME="ejb/test/timer/SecuredTimerSLSB"; public org.jboss.test.timer.interfaces.TimerSLSB create() throws javax.ejb.CreateException,java.rmi.RemoteException; }
TimerSLSBHome.java |