| java.lang.Object com.caucho.naming.Jndi
Jndi | public class Jndi (Code) | | Static utility functions.
|
Method Summary | |
public static void | bindDeep(String name, Object obj) | public static void | bindDeep(Context context, String name, Object obj) | public static void | bindDeepShort(String name, Object obj) | public static void | bindDeepShort(Context context, String name, Object obj) | public static String | getFullName(String shortName) Returns the full name. | public static Object | lookup(String name) | public static void | rebindDeep(String name, Object obj) Binds the object into JNDI without warnings if an old
object exists, using the full JNDI name. | public static void | rebindDeep(Context context, String name, Object obj) Binds the object into JNDI without warnings if an old
object exists, using the full JNDI name. | public static void | rebindDeepShort(String name, Object obj) Binds the object into JNDI without warnings if an old
object exists. | public static void | rebindDeepShort(Context context, String name, Object obj) Binds the object into JNDI without warnings if an old
object exists. |
getFullName | public static String getFullName(String shortName)(Code) | | Returns the full name.
|
rebindDeep | public static void rebindDeep(String name, Object obj) throws NamingException(Code) | | Binds the object into JNDI without warnings if an old
object exists, using the full JNDI name.
|
rebindDeep | public static void rebindDeep(Context context, String name, Object obj) throws NamingException(Code) | | Binds the object into JNDI without warnings if an old
object exists, using the full JNDI name.
|
rebindDeepShort | public static void rebindDeepShort(String name, Object obj) throws NamingException(Code) | | Binds the object into JNDI without warnings if an old
object exists. The name may be a full name or the short
form.
|
rebindDeepShort | public static void rebindDeepShort(Context context, String name, Object obj) throws NamingException(Code) | | Binds the object into JNDI without warnings if an old
object exists. The name may be a full name or the short
form.
|
|
|