Searched defs:oldBd (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DNamingEvent.java152 * The names in <tt>newBd</tt> and <tt>oldBd</tt> are to be resolved relative
156 * For an <tt>OBJECT_REMOVED</tt> event type, <tt>oldBd</tt> must not be null.
158 * <tt>oldBd</tt> must not be null. For an <tt>OBJECT_RENAMED</tt> event type,
159 * one of <tt>newBd</tt> or <tt>oldBd</tt> may be null if the new or old
165 * @param oldBd A possibly null binding after the change. See method description.
173 Binding newBd, Binding oldBd, Object changeInfo) {
176 oldBinding = oldBd;
172 NamingEvent(EventContext source, int type, Binding newBd, Binding oldBd, Object changeInfo) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DNamingEventNotifier.java230 private void fireObjectRemoved(Binding oldBd, long changeID) { argument
235 null, oldBd, new Long(changeID));
247 Binding oldBd = new Binding(newBd.getName(), null, newBd.isRelative());
250 eventSrc, NamingEvent.OBJECT_CHANGED, newBd, oldBd, new Long(changeID));
261 Binding oldBd = null;
266 oldBd = new Binding(relDN, null);
270 if (oldBd == null) {
271 oldBd = new Binding(oldDN, null, false /* not relative name */);
275 eventSrc, NamingEvent.OBJECT_RENAMED, newBd, oldBd, new Long(changeID));

Completed in 54 milliseconds