Page 1 of 1

About Question enthuware.oce-ejbd.v6.2.357 :

Posted: Tue Jan 01, 2013 7:37 am
by ETS User
Hallo,

small mistake:

@Stateless
public class XBean implements XLocal{

//... other business methods
public void processData(Data d){
d.value = 20;
}
}

should be:
@Stateless
public class XBean implements XLocal{

//... other business methods
public void processData(Data d){
d.setValue(20); // use SETer because of private attribute of value in Data
}
}

Re: About Question enthuware.oce-ejbd.v6.2.357 :

Posted: Tue Jan 01, 2013 3:44 pm
by admin
You are right. This has now been fixed.

thank you for your feedback!