Recursive call in SSLIOSession?

2009-03-18 Thread sebb
SSLIOSession has: SSLIOSession implements IOSession ... private final IOSession session; ... public Object getAttribute(final String name) { return this.session.getAttribute(name); } So if session is actually an SSLIOSession - rather than IOSessionImpl - it looks this will re

Re: Recursive call in SSLIOSession?

2009-03-18 Thread Asankha C. Perera
SSLIOSession has: SSLIOSession implements IOSession ... private final IOSession session; ... public Object getAttribute(final String name) { return this.session.getAttribute(name); } So if session is actually an SSLIOSession - rather than IOSessionImpl - it looks this will

Re: Recursive call in SSLIOSession?

2009-03-18 Thread sebb
On 18/03/2009, Asankha C. Perera wrote: > > > > SSLIOSession has: > > > > SSLIOSession implements IOSession ... > > > >private final IOSession session; > > ... > >public Object getAttribute(final String name) { > >return this.session.getAttribute(name); > >} > > > > So if sessi

Re: Recursive call in SSLIOSession?

2009-03-18 Thread Oleg Kalnichevski
sebb wrote: On 18/03/2009, Asankha C. Perera wrote: SSLIOSession has: SSLIOSession implements IOSession ... private final IOSession session; ... public Object getAttribute(final String name) { return this.session.getAttribute(name); } So if session is actually an SSLIOSessi