Hi all,
 
Is it possible to map some inherited attributes in EJB Container Managed ?
For example :
 
public class MotherAccount
{
    protected int motherint;
 
    public void setMotherint(int anInt)
    {
        this.motherint = anInt;
    }
........
}
 
and the Account Bean class that extends the super class :
 
public class AccountImplBean extends MotherAccount implements EntityBean {
........
}
 
Is it possible to map the motherint attribute of class AccountImplBean inhertied from MotherAccount class ?
 
In a simple way, is it possible to save values of inherited attributes with container managed entity beans ?
 
Thanx,
 
                Thomas DANDELOT

Reply via email to