(Name name)
| 188 | |
| 189 | |
| 190 | @Override |
| 191 | public NamingEnumeration<NameClassPair> list(Name name) throws NamingException { |
| 192 | |
| 193 | if (log.isTraceEnabled()) { |
| 194 | log.trace(sm.getString("selectorContext.methodUsingName", "list", name)); |
| 195 | } |
| 196 | |
| 197 | return getBoundContext().list(parseName(name)); |
| 198 | } |
| 199 | |
| 200 | |
| 201 | @Override |
nothing calls this directly
no test coverage detected