KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > ejb > JNDINames


1 package org.ejbca.core.ejb;
2
3 /**
4  * This class is the central location to store the internal
5  * names of various entities, and these internal names are later
6  * mapped to the JNDI names in the deployment environment. Any change
7  * here should also be reflected in the deployment descriptors.
8  */

9 public interface JNDINames {
10
11     /**
12      * This is the datasource definition used through the whole EJBCA app.
13      */

14     String JavaDoc DATASOURCE = "java:comp/env/DataSource";
15
16 }
17
Popular Tags