Searched defs:rebind (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DRMIHelper.java61 public static void rebind(String uniqueID, Remote object) throws DebuggerException { method in class:RMIHelper
64 Naming.rebind(name, object);
70 Naming.rebind(name, object);
/openjdk7/jdk/src/share/classes/java/rmi/registry/
H A DRegistry.java37 * <code>bind</code>, <code>unbind</code>, and <code>rebind</code>
173 public void rebind(String name, Remote obj) method in interface:Registry
/openjdk7/jdk/test/java/rmi/registry/interfaceHash/
H A DReferenceRegistryStub.java32 new java.rmi.server.Operation("void rebind(java.lang.String, java.rmi.Remote)"),
138 // implementation of rebind(String, Remote)
139 public void rebind(java.lang.String $param_String_1, java.rmi.Remote $param_Remote_2) method in class:ReferenceRegistryStub
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DSingleEntryRegistry.java79 public void rebind(String name, Remote obj) throws AccessException { method in class:SingleEntryRegistry
/openjdk7/jdk/src/share/classes/java/rmi/
H A DNaming.java55 * <code>rebind</code> methods.
168 public static void rebind(String name, Remote obj) method in class:Naming
177 registry.rebind(parsed.name, obj);
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DDirContext.java414 * @see #rebind(Name, Object, Attributes)
466 public void rebind(Name name, Object obj, Attributes attrs) method in interface:DirContext
472 * See {@link #rebind(Name, Object, Attributes)} for details.
485 public void rebind(String name, Object obj, Attributes attrs) method in interface:DirContext
H A DInitialDirContext.java185 public void rebind(String name, Object obj, Attributes attrs) method in class:InitialDirContext
187 getURLOrDefaultInitDirCtx(name).rebind(name, obj, attrs);
190 public void rebind(Name name, Object obj, Attributes attrs) method in class:InitialDirContext
192 getURLOrDefaultInitDirCtx(name).rebind(name, obj, attrs);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DInitialContext.java426 public void rebind(String name, Object obj) throws NamingException { method in class:InitialContext
427 getURLOrDefaultInitCtx(name).rebind(name, obj);
430 public void rebind(Name name, Object obj) throws NamingException { method in class:InitialContext
431 getURLOrDefaultInitCtx(name).rebind(name, obj);
H A DContext.java325 * @see #rebind(Name, Object)
364 * @see #rebind(String, Object)
366 * @see javax.naming.directory.DirContext#rebind(Name, Object,
370 public void rebind(Name name, Object obj) throws NamingException; method in interface:Context
374 * See {@link #rebind(Name, Object)} for details.
384 public void rebind(String name, Object obj) throws NamingException; method in interface:Context
436 * @see #rebind(Name, Object)
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DContinuationContext.java85 public void rebind(Name name, Object newObj) throws NamingException { method in class:ContinuationContext
87 ctx.rebind(name, newObj);
89 public void rebind(String name, Object newObj) throws NamingException { method in class:ContinuationContext
91 ctx.rebind(name, newObj);
H A DContinuationDirContext.java183 public void rebind(Name name, Object obj, Attributes attrs) method in class:ContinuationDirContext
186 res.getDirContext().rebind(res.getName(), obj, attrs);
188 public void rebind(String name, Object obj, Attributes attrs) method in class:ContinuationDirContext
191 res.getDirContext().rebind(res.getString(), obj, attrs);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLDirContext.java198 public void rebind(String name, Object obj, Attributes attrs) method in class:GenericURLDirContext
203 ctx.rebind(res.getRemainingName(), obj, attrs);
209 public void rebind(Name name, Object obj, Attributes attrs) method in class:GenericURLDirContext
212 rebind(name.get(0), obj, attrs);
216 ctx.rebind(name.getSuffix(1), obj, attrs);
H A DGenericURLContext.java245 public void rebind(String name, Object obj) throws NamingException { method in class:GenericURLContext
249 ctx.rebind(res.getRemainingName(), obj);
255 public void rebind(Name name, Object obj) throws NamingException { method in class:GenericURLContext
257 rebind(name.get(0), obj);
261 ctx.rebind(name.getSuffix(1), obj);
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java179 public void rebind(String name, Remote obj) method in class:RegistryImpl
182 checkAccess("Registry.rebind");
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextImpl.java76 * The operations bind(), rebind(), bind_context() and rebind_context()
242 public void rebind(NameComponent[] n, org.omg.CORBA.Object obj) method in class:NamingContextImpl
550 * @param rebind Replace an existing binding or not.
567 * @see rebind
573 boolean rebind,
595 if (rebind) {
642 if (rebind)
643 context.rebind(tail,obj);
654 if (rebind)
570 doBind(NamingContextDataStore impl, NameComponent[] n, org.omg.CORBA.Object obj, boolean rebind, org.omg.CosNaming.BindingType bt) argument
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java79 "jmx.remote.jndi.rebind";
416 final boolean rebind = EnvHelp.computeBooleanFromString( stringBoolean );
419 logger.trace("start", JNDI_REBIND_ATTRIBUTE + "=" + rebind);
426 bind(jndiUrl, usemap, objref, rebind);
630 * @param rebind true if the object must be rebound.
633 RMIServer rmiServer, boolean rebind)
640 if (rebind)
641 ctx.rebind(jndiUrl, rmiServer);
632 bind(String jndiUrl, Hashtable<?, ?> attributes, RMIServer rmiServer, boolean rebind) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaCtx.java124 final public void rebind(Name name, Object obj, Attributes attrs) method in class:LdapSchemaCtx
H A DLdapReferralContext.java224 public void rebind(String name, Object obj) throws NamingException { method in class:LdapReferralContext
225 rebind(toName(name), obj);
228 public void rebind(Name name, Object obj) throws NamingException { method in class:LdapReferralContext
234 refCtx.rebind(overrideName(name), obj);
547 public void rebind(String name, Object obj, Attributes attrs) method in class:LdapReferralContext
549 rebind(toName(name), obj, attrs);
552 public void rebind(Name name, Object obj, Attributes attrs) method in class:LdapReferralContext
559 refCtx.rebind(overrideName(name), obj, attrs);
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java151 public void rebind(Name name, Object obj) throws NamingException { method in class:RegistryContext
154 "RegistryContext: Cannot rebind empty name"));
157 registry.rebind(name.get(0), encodeObject(obj, name.getPrefix(1)));
163 public void rebind(String name, Object obj) throws NamingException { method in class:RegistryContext
164 rebind(new CompositeName(name), obj);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeContext.java213 public void rebind(String name, Object newObj) throws NamingException { method in class:PartialCompositeContext
214 rebind(new CompositeName(name), newObj);
216 public void rebind(Name name, Object newObj) throws NamingException { method in class:PartialCompositeContext
231 cctx.rebind(e.getRemainingName(), newObj);
H A DPartialCompositeDirContext.java227 public void rebind(String name, Object obj, Attributes attrs) method in class:PartialCompositeDirContext
229 rebind(new CompositeName(name), obj, attrs);
232 public void rebind(Name name, Object obj, Attributes attrs) method in class:PartialCompositeDirContext
248 cctx.rebind(e.getRemainingName(), obj, attrs);
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContext.java122 public void rebind(String name, Object obj) throws NamingException { method in class:ldapURLContext
126 super.rebind(name, obj);
130 public void rebind(Name name, Object obj) throws NamingException { method in class:ldapURLContext
134 super.rebind(name, obj);
379 public void rebind(String name, Object obj, Attributes attrs) method in class:ldapURLContext
384 super.rebind(name, obj, attrs);
388 public void rebind(Name name, Object obj, Attributes attrs) method in class:ldapURLContext
393 super.rebind(name, obj, attrs);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DNamingContextImpl.java62 * The operations bind(), rebind(), bind_context() and rebind_context()
274 public void rebind(NameComponent[] n, org.omg.CORBA.Object obj) method in class:NamingContextImpl
285 dprint("rebind " + nameToString(n) + " to " + obj);
520 * @param rebind Replace an existing binding or not.
536 * @see rebind
542 boolean rebind,
563 if (rebind) {
606 if (rebind)
607 context.rebind(tail,obj);
617 if (rebind)
539 doBind(NamingContextDataStore impl, NameComponent[] n, org.omg.CORBA.Object obj, boolean rebind, org.omg.CosNaming.BindingType bt) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandle.java1293 return rebind().bindArgument(pos, basicType, value);
1324 return rebind().dropArguments(srcType, pos, drops);
1330 return rebind().permuteArguments(newType, reorder);
1334 MethodHandle rebind() { method in class:MethodHandle
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNCtx.java560 * Performs bind or rebind in the context depending on whether the
561 * flag rebind is set. The only objects allowed to be bound are of
566 * Uses the COS Naming apis bind/rebind or
570 * @param rebind perform rebind ? if true performs a rebind.
576 java.lang.Object obj, boolean rebind) throws NamingException {
592 if (rebind)
598 if (rebind)
599 _nc.rebind(pt
575 callBindOrRebind(NameComponent[] pth, Name name, java.lang.Object obj, boolean rebind) argument
688 public void rebind(Name name, java.lang.Object obj) method in class:CNCtx
710 public void rebind(String name, java.lang.Object obj) method in class:CNCtx
[all...]

Completed in 2136 milliseconds

12