In the core spec it is written that
"The conversational state of a stateful session object is defined as the session bean instance�s field values,
its associated interceptors and their instance field values, plus the transitive closure of the objects from
these instances� fields reached by following
Java object references."
Can anybody please explain the meaning of last part of this sentense (transitive closure of the objects from
these instances� fields reached by following Java object references).
Also, if Stateful session beans interceptor has a
String instance variable with some value say String var="temp" and the bean is passivated, what will be the value of var after activation of bean. As per my understanding it will be "temp". Is this right?