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 D | NamingContext.java | 333 * @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 D | SelectorContext.java | 294 * @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 D | BaseDirContext.java | 421 * @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 D | WARDirContext.java | 287 * @param oldName the name of the existing binding; may not be empty 292 public void rename(String oldName, String newName) argument
|
H A D | FileDirContext.java | 350 * @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 D | ProxyDirContext.java | 465 * @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 D | Model.java | 602 * @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