[Ejtools-cvs] CVS: libraries/common/src/main/net/sourceforge/ejtools/util JNDI.java,1.5,1.6
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-05-30 21:32:36
|
Update of /cvsroot/ejtools/libraries/common/src/main/net/sourceforge/ejtools/util In directory usw-pr-cvs1:/tmp/cvs-serv8160/common/src/main/net/sourceforge/ejtools/util Modified Files: JNDI.java Log Message: Add separator constant Index: JNDI.java =================================================================== RCS file: /cvsroot/ejtools/libraries/common/src/main/net/sourceforge/ejtools/util/JNDI.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** JNDI.java 2 May 2002 19:43:36 -0000 1.5 --- JNDI.java 30 May 2002 21:32:29 -0000 1.6 *************** *** 24,35 **** public abstract class JNDI { /** Log4j Logger */ ! static Category logger = Category.getInstance(JNDI.class); ! /** ! * Look-up for a file named jndi.properties in the classpath. If found, it is ! * load into the VM environment. ! */ public static void setJNDIProperties() { --- 24,34 ---- public abstract class JNDI { + /** J2EE JNDI Separator */ + public static String SEPARATOR = "/"; /** Log4j Logger */ ! private static Category logger = Category.getInstance(JNDI.class); ! /** Look-up for a file named jndi.properties in the classpath. If found, it is load into the VM environment. */ public static void setJNDIProperties() { |