Searched refs:destroySubcontext (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/
H A DContext.java548 * requires that the <tt>destroySubcontext()</tt> be performed
559 * @see #destroySubcontext(String)
561 public void destroySubcontext(Name name) throws NamingException; method in interface:Context
565 * See {@link #destroySubcontext(Name)} for details.
575 public void destroySubcontext(String name) throws NamingException; method in interface:Context
H A DInitialContext.java474 public void destroySubcontext(String name) throws NamingException { method in class:InitialContext
475 getURLOrDefaultInitCtx(name).destroySubcontext(name);
478 public void destroySubcontext(Name name) throws NamingException { method in class:InitialContext
479 getURLOrDefaultInitCtx(name).destroySubcontext(name);
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DContinuationContext.java134 public void destroySubcontext(Name name) throws NamingException { method in class:ContinuationContext
136 ctx.destroySubcontext(name);
138 public void destroySubcontext(String name) throws NamingException { method in class:ContinuationContext
140 ctx.destroySubcontext(name);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java381 public void destroySubcontext(String name) throws NamingException { method in class:GenericURLContext
385 ctx.destroySubcontext(res.getRemainingName());
391 public void destroySubcontext(Name name) throws NamingException { method in class:GenericURLContext
393 destroySubcontext(name.get(0));
397 ctx.destroySubcontext(name.getSuffix(1));
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeContext.java343 public void destroySubcontext(String name) throws NamingException { method in class:PartialCompositeContext
344 destroySubcontext(new CompositeName(name));
347 public void destroySubcontext(Name name) throws NamingException { method in class:PartialCompositeContext
362 cctx.destroySubcontext(e.getRemainingName());
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContext.java206 public void destroySubcontext(String name) throws NamingException { method in class:ldapURLContext
210 super.destroySubcontext(name);
214 public void destroySubcontext(Name name) throws NamingException { method in class:ldapURLContext
218 super.destroySubcontext(name);
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java234 public void destroySubcontext(Name name) throws NamingException { method in class:RegistryContext
238 public void destroySubcontext(String name) throws NamingException { method in class:RegistryContext
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNCtx.java918 public void destroySubcontext(String name) throws NamingException { method in class:CNCtx
919 destroySubcontext(new CompositeName(name));
929 public void destroySubcontext(Name name) method in class:CNCtx
947 cctx.destroySubcontext(e.getRemainingName());
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapReferralContext.java380 public void destroySubcontext(String name) throws NamingException { method in class:LdapReferralContext
381 destroySubcontext(toName(name));
384 public void destroySubcontext(Name name) throws NamingException { method in class:LdapReferralContext
390 refCtx.destroySubcontext(overrideName(name));
H A DLdapCtx.java373 // -- createSubcontext/destroySubcontext
883 refCtx.destroySubcontext(name);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java357 public void destroySubcontext(String name) throws NamingException { method in class:HierMemDirCtx
358 destroySubcontext(myParser.parse(name));
361 public void destroySubcontext(Name name) throws NamingException { method in class:HierMemDirCtx

Completed in 803 milliseconds