001    package biz.wedoit4u.ejb.entity;
002    
003    /**
004     * This class provides <code>static fields</code> that 
005     * hold the standard JNDI locations for all the entity beans in
006     * this package.
007     *
008     * <p>Copyright 2003, Rakesh Vidyadharan</p>
009     *
010     * @author Rakesh Vidyadharan 10<sup><small>th</small></sup>
011     *   September 2003
012     *
013     * @version $Id: EntityBeanJNDILocations.java,v 1.3 2003/10/29 04:11:38 rakesh Exp $
014     */
015    public final class EntityBeanJNDILocations extends Object
016    {
017      /**
018       * The <code>JNDI</code> location to use to look up the home object
019       * of a {@link CustomerType} entity 
020       * bean.
021       */
022      public static final String CUSTOMER_TYPES_LOCATION = "java:comp/env/ejb/entity/CustomerTypes";
023    
024      /**
025       * The <code>JNDI</code> location to use to look up the home object
026       * of a {@link Customer} entity 
027       * bean.
028       */
029      public static final String CUSTOMERS_LOCATION = "java:comp/env/ejb/entity/Customers";
030    
031      /**
032       * The <code>JNDI</code> location to use to look up the home object
033       * of a {@link Category} entity bean.
034       */
035      public static final String CATEGORIES_LOCATION = "java:comp/env/ejb/entity/Categories";
036    
037      /**
038       * The <code>JNDI</code> location to use to look up the home object
039       * of a {@link Content} entity bean.
040       */
041      public static final String CONTENTS_LOCATION = "java:comp/env/ejb/entity/Contents";
042    
043      /**
044       * The <code>JNDI</code> location to use to look up the home object
045       * of a {@link SiteProperty} entity bean.
046       */
047      public static final String SITE_PROPERTIES_LOCATION = "java:comp/env/ejb/entity/SiteProperties";
048    
049      /**
050       * Default constructor.  Cannot be instantiated.
051       */
052      private EntityBeanJNDILocations() {}
053    }