Searched defs:oldName (Results 1 - 7 of 7) sorted by relevance

/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DNamingContext.java333 * @param oldName the name of the existing binding; may not be empty
338 public void rename(Name oldName, Name newName) argument
340 Object value = lookup(oldName);
342 unbind(oldName);
350 * @param oldName the name of the existing binding; may not be empty
355 public void rename(String oldName, String newName) argument
357 rename(new CompositeName(oldName), new CompositeName(newName));
H A DSelectorContext.java294 * @param oldName the name of the existing binding; may not be empty
299 public void rename(Name oldName, Name newName) argument
301 getBoundContext().rename(parseName(oldName), parseName(newName));
309 * @param oldName the name of the existing binding; may not be empty
314 public void rename(String oldName, String newName) argument
316 getBoundContext().rename(parseName(oldName), parseName(newName));
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DBaseDirContext.java421 * @param oldName the name of the existing binding; may not be empty
426 public void rename(Name oldName, Name newName) argument
428 rename(oldName.toString(), newName.toString());
436 * @param oldName the name of the existing binding; may not be empty
441 public abstract void rename(String oldName, String newName) argument
H A DWARDirContext.java287 * @param oldName the name of the existing binding; may not be empty
292 public void rename(String oldName, String newName) argument
H A DFileDirContext.java350 * @param oldName the name of the existing binding; may not be empty
355 public void rename(String oldName, String newName) argument
358 File file = file(oldName);
362 (sm.getString("resources.notFound", oldName));
373 oldName, newName));
H A DProxyDirContext.java465 * @param oldName the name of the existing binding; may not be empty
470 public void rename(Name oldName, Name newName) argument
472 dirContext.rename(parseName(oldName), parseName(newName));
473 cacheUnload(oldName.toString());
481 * @param oldName the name of the existing binding; may not be empty
486 public void rename(String oldName, String newName) argument
488 dirContext.rename(parseName(oldName), parseName(newName));
489 cacheUnload(oldName);
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/
H A DModel.java602 * @param oldName the fully qualified name of the old key for the mapping
606 String oldName)
613 if (oldName != null)
614 _classes.remove(oldName);
605 updateKeyForClass(MappingClassElement mappingClass, String oldName) argument

Completed in 35 milliseconds