Skip to content

Commit b5620a3

Browse files
committedSep 15, 2020
8253155: Minor cleanups and Javadoc fixes for LdapDnsProvider of java.naming
Reviewed-by: dfuchs, aefimov, alanb, vtewari
1 parent d219d8b commit b5620a3

File tree

4 files changed

+14
-18
lines changed

4 files changed

+14
-18
lines changed
 

‎src/java.naming/share/classes/com/sun/jndi/ldap/DefaultLdapDnsProvider.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,14 +25,14 @@
2525

2626
package com.sun.jndi.ldap;
2727

28-
import javax.naming.NamingException;
29-
import javax.naming.ldap.spi.LdapDnsProvider;
30-
import javax.naming.ldap.spi.LdapDnsProviderResult;
3128
import java.util.ArrayList;
3229
import java.util.List;
3330
import java.util.Map;
3431
import java.util.Optional;
3532

33+
import javax.naming.NamingException;
34+
import javax.naming.ldap.spi.LdapDnsProviderResult;
35+
3636
public class DefaultLdapDnsProvider {
3737

3838
public Optional<LdapDnsProviderResult> lookupEndpoints(String url,
@@ -82,5 +82,4 @@ public Optional<LdapDnsProviderResult> lookupEndpoints(String url,
8282
return Optional.of(res);
8383
}
8484
}
85-
8685
}

‎src/java.naming/share/classes/com/sun/jndi/ldap/LdapDnsProviderService.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -87,7 +87,7 @@ static LdapDnsProviderService getInstance() {
8787
* subclasses of {@code LdapDnsProvider} then this method will fall back
8888
* to the {@code DefaultLdapDnsProvider}.
8989
*
90-
* @throws NamingException if the {@code url} in not valid or an error
90+
* @throws NamingException if the {@code url} is not valid or an error
9191
* occurred while performing the lookup.
9292
*/
9393
LdapDnsProviderResult lookupEndpoints(String url, Hashtable<?,?> env)
@@ -110,5 +110,4 @@ LdapDnsProviderResult lookupEndpoints(String url, Hashtable<?,?> env)
110110
}
111111
return result;
112112
}
113-
114113
}

‎src/java.naming/share/classes/javax/naming/ldap/spi/LdapDnsProvider.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -105,5 +105,4 @@ private static Void checkPermission() {
105105
*/
106106
public abstract Optional<LdapDnsProviderResult> lookupEndpoints(
107107
String url, Map<?,?> env) throws NamingException;
108-
109108
}

‎src/java.naming/share/classes/javax/naming/ldap/spi/LdapDnsProviderResult.java

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -32,7 +32,7 @@
3232
*
3333
* <p> This class is used by an {@link LdapDnsProvider} to return the result
3434
* of a DNS lookup for a given LDAP URL. The result consists of a domain name
35-
* and its associated ldap server endpoints.
35+
* and its associated LDAP server endpoints.
3636
*
3737
* <p> A {@code null} {@code domainName} is equivalent to and represented
3838
* by an empty string.
@@ -46,10 +46,10 @@ public final class LdapDnsProviderResult {
4646

4747
/**
4848
* Construct an LdapDnsProviderResult consisting of a resolved domain name
49-
* and the ldap server endpoints that serve the domain.
49+
* and the LDAP server endpoints that serve the domain.
5050
*
5151
* @param domainName the resolved domain name; can be null.
52-
* @param endpoints the possibly empty list of resolved ldap server
52+
* @param endpoints the possibly empty list of resolved LDAP server
5353
* endpoints
5454
*
5555
* @throws NullPointerException if {@code endpoints} contains {@code null}
@@ -63,7 +63,7 @@ public LdapDnsProviderResult(String domainName, List<String> endpoints) {
6363
}
6464

6565
/**
66-
* Returns the domain name resolved from the ldap URL. This method returns
66+
* Returns the domain name resolved from the LDAP URL. This method returns
6767
* the empty string if the {@code LdapDnsProviderResult} is created with a
6868
* null domain name.
6969
*
@@ -75,13 +75,12 @@ public String getDomainName() {
7575

7676
/**
7777
* Returns the possibly empty list of individual server endpoints resolved
78-
* from the ldap URL.
78+
* from the LDAP URL.
7979
*
8080
* @return a possibly empty unmodifiable {@link List} containing the
81-
* resolved ldap server endpoints
81+
* resolved LDAP server endpoints
8282
*/
8383
public List<String> getEndpoints() {
8484
return endpoints;
8585
}
86-
8786
}

0 commit comments

Comments
 (0)
Please sign in to comment.