01: package org.ejbca.core.ejb;
02:
03: /**
04: * This class is the central location to store the internal
05: * names of various entities, and these internal names are later
06: * mapped to the JNDI names in the deployment environment. Any change
07: * here should also be reflected in the deployment descriptors.
08: */
09: public interface JNDINames {
10:
11: /**
12: * This is the datasource definition used through the whole EJBCA app.
13: */
14: String DATASOURCE = "java:comp/env/DataSource";
15:
16: }
|