Ah.  

Am grabbing source from Seam CVS to use the debugger as suggested.  And yes, 
I'm fairly certain my code is properly annotated.  


  | package com.alrubinger.showcase.entity;
  | 
  | import java.util.Collection;
  | 
  | import javax.persistence.CascadeType;
  | import javax.persistence.Column;
  | import javax.persistence.Entity;
  | import javax.persistence.FetchType;
  | import javax.persistence.Inheritance;
  | import javax.persistence.InheritanceType;
  | import javax.persistence.ManyToOne;
  | import javax.persistence.OneToMany;
  | 
  | import org.apache.commons.logging.Log;
  | import org.apache.commons.logging.LogFactory;
  | import org.hibernate.validator.Length;
  | import org.hibernate.validator.NotNull;
  | import org.jboss.seam.ScopeType;
  | import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.annotations.Scope;
  | 
  | @Entity()
  | @Inheritance(strategy=InheritanceType.JOINED)
  | @Name("user")
  | @Scope(ScopeType.SESSION)
  | public class User extends Category { ... }
  | 

I'm not sure how this factors in, but User is a subclass of Category, which is 
an EJB3 Entity Bean, but not itself a Seam component.

S,
ALR

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

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


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to