Jeff Lansing wrote: > Hi, > > > > In directory/releases/mina-0.9.0/src/java/org/apache/mina/common the > class DefaultIoFilterChainBuilder.java provides public methods to get > Entries, to get lists of Entries, etc. But it turns out that Entry is a > private class, so they are entirely useless when you get them. Surely > this is not intended?
The private inner class EntryImpl in DefaultIoFilterChainBuilder implements IoFilterChain.Entry which is a public interface. All the methods you are referring to return IoFilterChain.Entry not EntryImpl. /Niklas
