1 package org.andromda.cartridges.ejb; 2 3 /** 4 * Stores Globals specific to the EJB cartridge. 5 * 6 * @author Chad Brandon 7 */ 8 public class EJBGlobals 9 { 10 /** 11 * Stores the default EJB transaction type. 12 */ 13 public static final String TRANSACTION_TYPE = "transactionType"; 14 15 /** 16 * The pattern to use for determining the package name for EJBs. 17 */ 18 public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; 19 }