01: package org.andromda.cartridges.ejb;
02:
03: /**
04: * Stores Globals specific to the EJB cartridge.
05: *
06: * @author Chad Brandon
07: */
08: public class EJBGlobals {
09: /**
10: * Stores the default EJB transaction type.
11: */
12: public static final String TRANSACTION_TYPE = "transactionType";
13:
14: /**
15: * The pattern to use for determining the package name for EJBs.
16: */
17: public static final String JNDI_NAME_PREFIX = "jndiNamePrefix";
18: }
|