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

/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DSerialContextProvider.java121 public void destroySubcontext(String name) method in interface:SerialContextProvider
H A DSerialContextProviderImpl.java179 public void destroySubcontext(String name) method in class:SerialContextProviderImpl
182 rootContext.destroySubcontext(name);
H A DJavaURLContext.java340 * The destroySubcontext operation is not supported by this context.
344 public void destroySubcontext(String name) throws NamingException { method in class:JavaURLContext
349 * The destroySubcontext operation is not supported by this context.
353 public void destroySubcontext(Name name) throws NamingException { method in class:JavaURLContext
H A DTransientContext.java110 public void destroySubcontext(String name) throws NamingException { method in class:TransientContext
120 public void destroySubcontext(Name name) throws NamingException { method in class:TransientContext
121 destroySubcontext(name.toString());
191 ctx.destroySubcontext(suffix);
H A DSerialContext.java894 public void destroySubcontext(String name) throws NamingException { method in class:SerialContext
897 javaUrlContext.destroySubcontext(name);
900 getProvider().destroySubcontext(name);
917 public void destroySubcontext(Name name) throws NamingException { method in class:SerialContext
919 destroySubcontext(name.toString());
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DNamingContext.java481 * requires that the destroySubcontext() be performed on a context from
490 public void destroySubcontext(Name name) method in class:NamingContext
510 ((Context) entry.value).destroySubcontext(name.getSuffix(1));
537 public void destroySubcontext(String name) method in class:NamingContext
539 destroySubcontext(new CompositeName(name));
H A DSelectorContext.java404 * requires that the destroySubcontext() be performed on a context from
413 public void destroySubcontext(Name name) method in class:SelectorContext
415 getBoundContext().destroySubcontext(parseName(name));
428 public void destroySubcontext(String name) method in class:SelectorContext
430 getBoundContext().destroySubcontext(parseName(name));
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DBaseDirContext.java525 * requires that the destroySubcontext() be performed on a context from
534 public void destroySubcontext(Name name) method in class:BaseDirContext
536 destroySubcontext(name.toString());
549 public abstract void destroySubcontext(String name) method in class:BaseDirContext
H A DWARDirContext.java402 * requires that the destroySubcontext() be performed on a context from
411 public void destroySubcontext(String name) method in class:WARDirContext
H A DFileDirContext.java449 * requires that the destroySubcontext() be performed on a context from
458 public void destroySubcontext(String name) method in class:FileDirContext
H A DProxyDirContext.java577 * requires that the destroySubcontext() be performed on a context from
586 public void destroySubcontext(Name name) method in class:ProxyDirContext
588 dirContext.destroySubcontext(parseName(name));
602 public void destroySubcontext(String name) method in class:ProxyDirContext
604 dirContext.destroySubcontext(parseName(name));

Completed in 39 milliseconds