Hello, I'm wondering if there is danger to setting an attribute object in a
service. I notice it tends to stick around and I'm worried it could be
accessed by other user sessions. 

example

public class MyServiceImpl implements MyService {

private SomeObject obj

private void initialize(SomeObject obj) {
   this.obj = obj;
}

}

or should I just pass the object into the method I need to do the work and
not set an attribute?

Thanks



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Sevice-State-Stateless-tp5716278.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to