[jboss-user] [JNDI/Naming/Network] - Re: Name not Bound

bacooper81 do-not-reply at jboss.com
Thu Feb 26 14:36:39 EST 2009


I'm not sure which type of bean they are.  Here is one of the classes:

package com.castofshadows.manager;
  | 
  | import com.castofshadows.entity.Address;
  | 
  | import ...
  | 
  | @Stateless
  | public class AddressManagerBean implements AddressManager {
  | 
  |     @PersistenceContext(unitName = "castOfShadows")
  |     private EntityManager entityManager;
  | 
  |     @TransactionAttribute(TransactionAttributeType.REQUIRED)
  |     public void saveAddress(Address address) {
  |         entityManager.persist(address);
  |     }
  | }

And here is everything inside the jar file.  I'm not sure how to run the jar command in windows, so I just copied and pasted out of the 7zip viewer:

entity
  | Address.class
  | Event.class
  | Notification.class
  | Photo.class
  | PhotoAlbum.class
  | Product.class
  | ProductType.class
  | User.class
  | Venue.class
  | enums
  | EventStatus.class
  | NotificationStatus.class
  | manager
  | AddressManager.class
  | AddressManagerBean.class
  | EventManager.class
  | EventManagerBean.class
  | NotificationManager.class
  | NotificationManagerBean.class
  | PhotoManager.class
  | PhotoManagerBean.class
  | ProductManager.class
  | ProductManagerBean.class
  | UserManager.class
  | UserManagerBean.class
  | util
  | ProductGroup.class

View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4213505#4213505

Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4213505



More information about the jboss-user mailing list