src/share/classes/com/sun/jndi/toolkit/dir/HierMemDirCtx.java

Print this page


   1 /*
   2  * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 435             throws NamingException {
 436         Name result = composeName(new CompositeName(name),
 437                                   new CompositeName(prefix));
 438         return result.toString();
 439     }
 440 
 441     public Name composeName(Name name, Name prefix)
 442             throws NamingException {
 443         name = canonizeName(name);
 444         prefix = canonizeName(prefix);
 445         Name result = (Name)(prefix.clone());
 446         result.addAll(name);
 447         return result;
 448     }
 449 
 450     @SuppressWarnings("unchecked") // clone()
 451     public Object addToEnvironment(String propName, Object propVal)
 452             throws NamingException {
 453         myEnv = (myEnv == null)
 454                 ? new Hashtable<String, Object>(11, 0.75f)
 455                 : (Hashtable<String, Object>)myEnv.clone();
 456 
 457         return myEnv.put(propName, propVal);
 458     }
 459 
 460     @SuppressWarnings("unchecked") // clone()
 461     public Object removeFromEnvironment(String propName)
 462             throws NamingException {
 463         if (myEnv == null)
 464             return null;
 465 
 466         myEnv = (Hashtable<String, Object>)myEnv.clone();
 467         return myEnv.remove(propName);
 468     }
 469 
 470     @SuppressWarnings("unchecked") // clone()
 471     public Hashtable<String, Object> getEnvironment() throws NamingException {
 472         if (myEnv == null) {
 473             return new Hashtable<>(5, 0.75f);
 474         } else {
 475             return (Hashtable<String, Object>)myEnv.clone();
 476         }
 477     }
 478 
 479     public Attributes getAttributes(String name)
 480        throws NamingException {
 481        return getAttributes(myParser.parse(name));
 482     }
 483 
 484     public Attributes getAttributes(Name name)
 485         throws NamingException {
 486         HierMemDirCtx ctx = (HierMemDirCtx) doLookup(name, false);
 487         return ctx.doGetAttributes();
 488     }
 489 
 490     protected Attributes doGetAttributes() throws NamingException {
 491         return (Attributes)attrs.clone();
 492     }
 493 
 494     public Attributes getAttributes(String name, String[] attrIds)
 495         throws NamingException {


   1 /*
   2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 435             throws NamingException {
 436         Name result = composeName(new CompositeName(name),
 437                                   new CompositeName(prefix));
 438         return result.toString();
 439     }
 440 
 441     public Name composeName(Name name, Name prefix)
 442             throws NamingException {
 443         name = canonizeName(name);
 444         prefix = canonizeName(prefix);
 445         Name result = (Name)(prefix.clone());
 446         result.addAll(name);
 447         return result;
 448     }
 449 
 450     @SuppressWarnings("unchecked") // clone()
 451     public Object addToEnvironment(String propName, Object propVal)
 452             throws NamingException {
 453         myEnv = (myEnv == null)
 454                 ? new Hashtable<String, Object>(11, 0.75f)
 455                 : myEnv.clone();
 456 
 457         return myEnv.put(propName, propVal);
 458     }
 459 
 460     @SuppressWarnings("unchecked") // clone()
 461     public Object removeFromEnvironment(String propName)
 462             throws NamingException {
 463         if (myEnv == null)
 464             return null;
 465 
 466         myEnv = myEnv.clone();
 467         return myEnv.remove(propName);
 468     }
 469 
 470     @SuppressWarnings("unchecked") // clone()
 471     public Hashtable<String, Object> getEnvironment() throws NamingException {
 472         if (myEnv == null) {
 473             return new Hashtable<>(5, 0.75f);
 474         } else {
 475             return myEnv.clone();
 476         }
 477     }
 478 
 479     public Attributes getAttributes(String name)
 480        throws NamingException {
 481        return getAttributes(myParser.parse(name));
 482     }
 483 
 484     public Attributes getAttributes(Name name)
 485         throws NamingException {
 486         HierMemDirCtx ctx = (HierMemDirCtx) doLookup(name, false);
 487         return ctx.doGetAttributes();
 488     }
 489 
 490     protected Attributes doGetAttributes() throws NamingException {
 491         return (Attributes)attrs.clone();
 492     }
 493 
 494     public Attributes getAttributes(String name, String[] attrIds)
 495         throws NamingException {