diff --git a/src/share/classes/javax/naming/CompositeName.java b/src/share/classes/javax/naming/CompositeName.java index fe9a09966c84e35d4564ff805061bf2752ce6c1a..ffa837d4a23b6e7a24962f6a8984b341b32f2452 100644 --- a/src/share/classes/javax/naming/CompositeName.java +++ b/src/share/classes/javax/naming/CompositeName.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -42,7 +42,7 @@ import java.util.Properties; * The most significant component is at index 0. * An empty composite name has no components. *
- *
- *
-
| String Name | @@ -137,14 +137,14 @@ import java.util.Properties;
|---|
- *
| String Names | @@ -189,7 +189,7 @@ import java.util.Properties;
|---|
- *
- *
- *
- *
- *
- *
- *
- *
* JNDI applications need a way to communicate various preferences * and properties that define the environment in which naming and @@ -138,7 +138,7 @@ import java.util.Hashtable; * *
* To simplify the task of setting up the environment * required by a JNDI application, @@ -151,11 +151,11 @@ import java.util.Hashtable; * and the value is a string in the format defined * for that property. Here is an example of a JNDI resource file: * - *
+ * } * * The JNDI class library reads the resource files and makes the property * values freely available. Thus JNDI resource files should be considered @@ -165,7 +165,7 @@ import java.util.Hashtable; * There are two kinds of JNDI resource files: * provider and application. * - *+ *{@code * java.naming.factory.object=com.sun.jndi.ldap.AttrsToCorba:com.wiz.from.Person * java.naming.factory.state=com.sun.jndi.ldap.CorbaToAttrs:com.wiz.from.Person * java.naming.factory.control=com.sun.jndi.ldap.ResponseControlFactory - *
* obj is equal to this RefAddr all of these conditions are true - *
* The following code sample shows how ReferralException can be used. - *
+ * } *+ *{@code * while (true) { * try { * bindings = ctx.listBindings(name); @@ -51,7 +51,7 @@ import java.util.Hashtable; * ctx = e.getReferralContext(); * } * } - *
* ReferralException is an abstract class. Concrete implementations * determine its synchronization and serialization properties. diff --git a/src/share/classes/javax/naming/directory/DirContext.java b/src/share/classes/javax/naming/directory/DirContext.java index 4b9fc59d6b6056c1838643df97fa6034c735c808..e3728792c58c664959da575135a1366d6f3e658e 100644 --- a/src/share/classes/javax/naming/directory/DirContext.java +++ b/src/share/classes/javax/naming/directory/DirContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -32,7 +32,7 @@ import javax.naming.*; * methods for examining and updating attributes * associated with objects, and for searching the directory. *
- *
- *
- *
- *
* Some directories have the notion of "operational attributes" which are * attributes associated with a directory object for administrative @@ -127,7 +127,7 @@ import javax.naming.*; * In order to retrieve operational attributes, you must name them explicitly. * *
- *
* There are certain methods in which the name must resolve to a context * (for example, when searching a single level context). The documentation @@ -138,7 +138,7 @@ import javax.naming.*; * Aside from these methods, there is no requirement that the * named object be a DirContext. *
- *
* An Attributes, SearchControls, or array object * passed as a parameter to any method will not be modified by the @@ -150,7 +150,7 @@ import javax.naming.*; * the caller. The caller may subsequently modify it; the service * provider will not. *
- *
* All the methods in this interface can throw a NamingException or * any of its subclasses. See NamingException and their subclasses diff --git a/src/share/classes/javax/naming/event/EventContext.java b/src/share/classes/javax/naming/event/EventContext.java index f9ae24935a8d2cb4d2109f0a8bd1c930e44dbcff..fd44876475b98de27be2523cd3f458c1991bd4e1 100644 --- a/src/share/classes/javax/naming/event/EventContext.java +++ b/src/share/classes/javax/naming/event/EventContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -34,7 +34,7 @@ import javax.naming.NamingException; * Contains methods for registering/deregistering listeners to be notified of * events fired when objects named in a context changes. *
- *
- *