[java-shib-attribute] branch main updated: Fix javadoc errors.
Daniel Fisher
dfisher at vt.edu
Sat Oct 15 03:13:24 UTC 2022
This is an automated email from the git hooks/post-receive script.
dfisher pushed a commit to branch main
in repository java-shib-attribute.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-attribute.git;a=commit;h=7bca4a9c02fc31032fec2d264d2416cfcc3b3153
The following commit(s) were added to refs/heads/main by this push:
new 7bca4a9c0 Fix javadoc errors.
7bca4a9c0 is described below
commit 7bca4a9c02fc31032fec2d264d2416cfcc3b3153
Author: Daniel Fisher <dfisher at vt.edu>
AuthorDate: Fri Oct 14 23:10:19 2022 -0400
Fix javadoc errors.
Errors introduced in the ldaptive v2 update.
---
.../dc/ldap/impl/LDAPDataConnectorParser.java | 26 +++++++++++-----------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java b/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java
index b7f0fd4fb..16a0da0fd 100644
--- a/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java
+++ b/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java
@@ -103,17 +103,17 @@ public class LDAPDataConnectorParser extends AbstractDataConnectorParser {
* </p>
*
* <ul>
- * <li>{@link SearchExecutor#setTimeLimit(Duration)} defaults to 3s, overridden by the "searchTimeLimit" attribute.
+ * <li>{@link SearchRequest#setTimeLimit(Duration)} defaults to 3s, overridden by the "searchTimeLimit" attribute.
* </li>
- * <li>{@link SearchExecutor#setSizeLimit(long)} defaults to 1, overridden by the "maxResultSize" attribute.</li>
+ * <li>{@link SearchRequest#setSizeLimit(int)} defaults to 1, overridden by the "maxResultSize" attribute.</li>
* <li>{@link SearchRequest#setBaseDn(String)} default to "", overridden by the "validateDN" attribute.</li>
- * <li>{@link SearchFilter#SearchFilter(String)} defaults to "(objectClass=*)", overridden by the "validateFilter"
- * attribute.</li>
- * <li>{@link PoolConfig#setMinPoolSize(int)} defaults to 0 if neither the attribute "poolInitialSize" nor the
- * attribute "minPoolSize" are set.</li>
- * <li>{@link PoolConfig#setMaxPoolSize(int)} defaults to 3 if neither the attribute "poolMaxIdleSize" nor the
- * attribute "maxPoolSize" are set.</li>
- * <li>{@link PoolConfig#setValidatePeriod(Duration)} defaults to 30m, overridden by the attribute
+ * <li>{@link FilterTemplate#setFilter(String)} (String)} defaults to "(objectClass=*)", overridden by the
+ * "validateFilter" attribute.</li>
+ * <li>{@link PooledConnectionFactory#setMinPoolSize(int)} defaults to 0 if neither the attribute "poolInitialSize"
+ * nor the attribute "minPoolSize" are set.</li>
+ * <li>{@link PooledConnectionFactory#setMaxPoolSize(int)} defaults to 3 if neither the attribute "poolMaxIdleSize"
+ * nor the attribute "maxPoolSize" are set.</li>
+ * <li>{@link SearchConnectionValidator#setValidatePeriod(Duration)} defaults to 30m, overridden by the attribute
* "validateTimerPeriod"</li>
* </ul>
*
@@ -569,11 +569,11 @@ public class LDAPDataConnectorParser extends AbstractDataConnectorParser {
// CheckStyle: CyclomaticComplexity ON
/**
- * Creates a new connection pool bean definition from a v2 XML configuration.
+ * Creates a new pooled connection factory bean definition from a v2 XML configuration.
*
- * @param connectionFactory used by the connection pool
+ * @param parserContext used to create dependent bean definitions
*
- * @return connection pool bean definition
+ * @return pooled connection factory bean definition
*/
// CheckStyle: MethodLength OFF
@Nullable public BeanDefinition createPooledConnectionFactory(@Nonnull final ParserContext parserContext) {
@@ -820,9 +820,9 @@ public class LDAPDataConnectorParser extends AbstractDataConnectorParser {
/**
* Returns a search validator or null if validatePeriodically is false.
*
- * @param validatePeriodically whether to create a search validator
* @param validateDN baseDN to search on
* @param validateFilter to search with
+ * @param validatePeriod on which to search
*
* @return search validator or null
*/
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list