1
1
/*
2
- * Copyright (c) 1996, 2005 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1996, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -81,10 +81,10 @@ private Naming() {}
81
81
*
82
82
* @param name a name in URL format (without the scheme component)
83
83
* @return a reference for a remote object
84
- * @exception NotBoundException if name is not currently bound
85
- * @exception RemoteException if registry could not be contacted
86
- * @exception AccessException if this operation is not permitted
87
- * @exception MalformedURLException if the name is not an appropriately
84
+ * @throws NotBoundException if name is not currently bound
85
+ * @throws RemoteException if registry could not be contacted
86
+ * @throws AccessException if this operation is not permitted
87
+ * @throws MalformedURLException if the name is not an appropriately
88
88
* formatted URL
89
89
* @since 1.1
90
90
*/
@@ -106,12 +106,12 @@ public static Remote lookup(String name)
106
106
*
107
107
* @param name a name in URL format (without the scheme component)
108
108
* @param obj a reference for the remote object (usually a stub)
109
- * @exception AlreadyBoundException if name is already bound
110
- * @exception MalformedURLException if the name is not an appropriately
111
- * formatted URL
112
- * @exception RemoteException if registry could not be contacted
113
- * @exception AccessException if this operation is not permitted (if
114
- * originating from a non-local host, for example)
109
+ * @throws AlreadyBoundException if name is already bound
110
+ * @throws MalformedURLException if the name is not an appropriately
111
+ * formatted URL
112
+ * @throws RemoteException if registry could not be contacted
113
+ * @throws AccessException if this operation is not permitted (if
114
+ * originating from a non-local host, for example)
115
115
* @since 1.1
116
116
*/
117
117
public static void bind (String name , Remote obj )
@@ -133,12 +133,12 @@ public static void bind(String name, Remote obj)
133
133
* with a remote object.
134
134
*
135
135
* @param name a name in URL format (without the scheme component)
136
- * @exception NotBoundException if name is not currently bound
137
- * @exception MalformedURLException if the name is not an appropriately
138
- * formatted URL
139
- * @exception RemoteException if registry could not be contacted
140
- * @exception AccessException if this operation is not permitted (if
141
- * originating from a non-local host, for example)
136
+ * @throws NotBoundException if name is not currently bound
137
+ * @throws MalformedURLException if the name is not an appropriately
138
+ * formatted URL
139
+ * @throws RemoteException if registry could not be contacted
140
+ * @throws AccessException if this operation is not permitted (if
141
+ * originating from a non-local host, for example)
142
142
* @since 1.1
143
143
*/
144
144
public static void unbind (String name )
@@ -158,11 +158,11 @@ public static void unbind(String name)
158
158
*
159
159
* @param name a name in URL format (without the scheme component)
160
160
* @param obj new remote object to associate with the name
161
- * @exception MalformedURLException if the name is not an appropriately
162
- * formatted URL
163
- * @exception RemoteException if registry could not be contacted
164
- * @exception AccessException if this operation is not permitted (if
165
- * originating from a non-local host, for example)
161
+ * @throws MalformedURLException if the name is not an appropriately
162
+ * formatted URL
163
+ * @throws RemoteException if registry could not be contacted
164
+ * @throws AccessException if this operation is not permitted (if
165
+ * originating from a non-local host, for example)
166
166
* @since 1.1
167
167
*/
168
168
public static void rebind (String name , Remote obj )
@@ -187,9 +187,9 @@ public static void rebind(String name, Remote obj)
187
187
* component)
188
188
* @return an array of names (in the appropriate format) bound
189
189
* in the registry
190
- * @exception MalformedURLException if the name is not an appropriately
191
- * formatted URL
192
- * @exception RemoteException if registry could not be contacted.
190
+ * @throws MalformedURLException if the name is not an appropriately
191
+ * formatted URL
192
+ * @throws RemoteException if registry could not be contacted.
193
193
* @since 1.1
194
194
*/
195
195
public static String [] list (String name )
@@ -228,7 +228,7 @@ private static Registry getRegistry(ParsedNamingURL parsed)
228
228
* @return an object which contains each of the above
229
229
* components.
230
230
*
231
- * @exception MalformedURLException if given url string is malformed
231
+ * @throws MalformedURLException if given url string is malformed
232
232
*/
233
233
private static ParsedNamingURL parseURL (String str )
234
234
throws MalformedURLException
0 commit comments