DirContextFactory.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jca.fs; import java.io.Serializable; import javax.resource.Referenceable; import javax.naming.NamingException; import javax.naming.directory.DirContext; /** * @author Scott.Stark@jboss.org * @version $Revision: 1.1 $ */ public interface DirContextFactory extends Referenceable, Serializable { public DirContext getConnection() throws NamingException; }
DirContextFactory.java |