This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: Deployment error mapping a parent/child related entityelkner Jul 15, 2006 4:52 AM (in response to abl)= unbound type ... 
- 
        2. Re: Deployment error mapping a parent/child related entityabl Jul 16, 2006 11:15 AM (in response to abl)I have a similar construct in another part of the system: @Entity public class BasketItem<T extends ComplexEntity> { private T object; @ManyToOne(fetch=FetchType.LAZY, optional=false) public T getObject() { return object; } public void setObject(T object) { this.object = object; } ... } @Entity public class AssetBasketItem extends BasketItem<Asset> { ... }
 this is getting deployed and works. what is the difference?
 
    