1
1
/*
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.
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
32
32
*
33
33
* <p> This class is used by an {@link LdapDnsProvider} to return the result
34
34
* 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.
36
36
*
37
37
* <p> A {@code null} {@code domainName} is equivalent to and represented
38
38
* by an empty string.
@@ -46,10 +46,10 @@ public final class LdapDnsProviderResult {
46
46
47
47
/**
48
48
* 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.
50
50
*
51
51
* @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
53
53
* endpoints
54
54
*
55
55
* @throws NullPointerException if {@code endpoints} contains {@code null}
@@ -63,7 +63,7 @@ public LdapDnsProviderResult(String domainName, List<String> endpoints) {
63
63
}
64
64
65
65
/**
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
67
67
* the empty string if the {@code LdapDnsProviderResult} is created with a
68
68
* null domain name.
69
69
*
@@ -75,13 +75,12 @@ public String getDomainName() {
75
75
76
76
/**
77
77
* Returns the possibly empty list of individual server endpoints resolved
78
- * from the ldap URL.
78
+ * from the LDAP URL.
79
79
*
80
80
* @return a possibly empty unmodifiable {@link List} containing the
81
- * resolved ldap server endpoints
81
+ * resolved LDAP server endpoints
82
82
*/
83
83
public List <String > getEndpoints () {
84
84
return endpoints ;
85
85
}
86
-
87
86
}
0 commit comments