com.interface21.jndi
Interface ContextCallback
- public interface ContextCallback
Callback interface to be implemented by classes that
need to perform an operation (such as a lookup) in a
JNDI context. This callback approach is valuable in
simplifying error handling, which is performed
by the JndiTemplate class. This is a similar approach to
that used by the JdbcTemplate class.
- Author:
- Rod Johnson
- See Also:
JndiTemplate,
JdbcTemplate
|
Method Summary |
java.lang.Object |
doInContext(javax.naming.Context ctx)
Do something with the given JNDI context.
|
doInContext
public java.lang.Object doInContext(javax.naming.Context ctx)
throws javax.naming.NamingException
- Do something with the given JNDI context.
Implementations don't need to worry about error handling
or cleanup, as the JndiTemplate class will handle this.
- Parameters:
ctx - the current JNDI context- Returns:
- a result object, or null
- Throws:
javax.naming.NamingException - Implementations don't need
to catch naming exceptions
Rod Johnson and Spring contributors 2001-2003.