|
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
|
- Re: Mapping of attributes inherited from super class Thomas Dandelot
- Re: Mapping of attributes inherited from super class H�l�ne JOANIN
