001package org.andromda.cartridges.ejb;
002
003/**
004 * Stores Globals specific to the EJB cartridge.
005 *
006 * @author Chad Brandon
007 */
008public class EJBGlobals
009{
010    /**
011     * Stores the default EJB transaction type.
012     */
013    public static final String TRANSACTION_TYPE = "transactionType";
014
015    /**
016     * The pattern to use for determining the package name for EJBs.
017     */
018    public static final String JNDI_NAME_PREFIX = "jndiNamePrefix";
019}