(Name name)
| 112 | |
| 113 | |
| 114 | @Override |
| 115 | public Object lookup(Name name) throws NamingException { |
| 116 | |
| 117 | if (log.isTraceEnabled()) { |
| 118 | log.trace(sm.getString("selectorContext.methodUsingName", "lookup", name)); |
| 119 | } |
| 120 | |
| 121 | // Strip the URL header |
| 122 | // Find the appropriate NamingContext according to the current bindings |
| 123 | // Execute the lookup on that context |
| 124 | return getBoundContext().lookup(parseName(name)); |
| 125 | } |
| 126 | |
| 127 | |
| 128 | @Override |
nothing calls this directly
no test coverage detected