1    package com.instantbank.common.utilcomponents;
2    
3    
4    /**
5     *  This class is the central location to store the internal JNDI names of
6     *  various entities of all ears.
7     *  Any change here should also be reflected in the deployment descriptors.
8     *
9     * @author Instant-bank (Consuelo Franky)
10    * @created August 2002
11    */
12   public interface JNDINames {
13   
14     // JNDI names of lettertemplate EJB home objects:
15   
16     /**
17      *  JNDI name of LetterTemplateController EJB :
18      */
19     public static final String LETTERTEMPLATE_SCC_EJBHOME
20     //FAILS:                   = "java:comp/env/ejb/lettertemplate/scc";
21        = "lettertemplate/scc";
22   
23     /**
24      *  JNDI name of LetterTemplate EJB :
25      */
26     public static final String LETTERTEMPLATE_EJBHOME
27        = "lettertemplate/LetterTemplate";
28   
29     /**
30      *  JNDI name of Job EJB :
31      */
32     public static final String JOB_EJBHOME
33        = "lettertemplate/Job";
34   
35     // JNDI names of servicing EJB home objects:
36   
37     /**
38      *  JNDI name of ServicingController EJB :
39      */
40     public static final String SERVICING_SCC_EJBHOME
41        = "servicing/scc";
42   
43     /**
44      *  JNDI name of Parameter EJB :
45      */
46     public static final String PARAMETER_EJBHOME
47        = "servicing/Parameter";
48   
49     // JNDI Names of data sources :
50   
51     /**
52      *  JNDI name of instantbankDB data source :
53      */
54     public static final String INSTANTBANKDB = "java:comp/env/jdbc/instantbankDB";
55   
56     // JNDI Names of application properties:
57   
58     /**
59      *  JNDI name of externalDebugMode propertie :
60      */
61     public static final String EXTERNAL_DEBUG_MODE = "java:comp/env/externalDebugMode";
62   
63     /**
64      *  JNDI name of imagesTemporalPath propertie :
65      */
66     public static final String IMAGES_TEMPORAL_PATH = "java:comp/env/imagesTemporalPath";
67   
68     /**
69      *  JNDI name of rtfToFoConfigPath propertie :
70      */
71     public static final String RTF2FO_CONFIG_PATH = "java:comp/env/rtfToFoConfigPath";
72   
73     /**
74      *  JNDI name of WLInitialContextFactory:
75      */
76     public static final String WLInitialContextFactory = "java:comp/env/wlInitialContextFactory";
77   
78     /**
79      *  JNDI name of zipLettersFileMaxSize:
80      */
81     public static final String ZipLettersFileMaxSize = "java:comp/env/zipLettersFileMaxSize";
82   
83     // JNDI Names of other resources:
84     /*
85      *  public static final String MAIL_SESSION
86      *  = "java:comp/env/mail/MailSession";
87      */
88   }
89   
90