public interface JndiCallback<T>
Note that there is hardly any need to implement this callback interface, as JndiTemplate provides all usual JNDI operations via convenience methods.
JndiTemplate
,
JdbcTemplate
Modifier and Type | Method and Description |
---|---|
T |
doInContext(javax.naming.Context ctx)
Do something with the given JNDI context.
|
T doInContext(javax.naming.Context ctx) throws javax.naming.NamingException
Implementations don't need to worry about error handling or cleanup, as the JndiTemplate class will handle this.
ctx
- the current JNDI contextnull
javax.naming.NamingException
- if thrown by JNDI methods