All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.ldap.pool.validation.DefaultDirContextValidator Maven / Gradle / Ivy

/*
 * Copyright 2005-2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.ldap.pool.validation;

import org.apache.commons.lang.Validate;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.ldap.pool.DirContextType;

import javax.naming.NamingEnumeration;
import javax.naming.directory.DirContext;
import javax.naming.directory.SearchControls;

/**
 * Default {@link DirContext} validator that executes {@link DirContext#search(String, String, SearchControls)}. The
 * name, filter and {@link SearchControls} are all configurable. There is no special handling for read only versus
 * read write {@link DirContext}s.
 * 
 * 
*
* Configuration: * * * * * * * * * * * * * * * * * * * * * * * * * *
PropertyDescriptionRequiredDefault
base * The name parameter to the search method. * No""
filter * The filter parameter to the search method. * No"objectclass=*"
searchControls * The {@link SearchControls} parameter to the search method. * No * {@link SearchControls#setCountLimit(long)} = 1
* {@link SearchControls#setReturningAttributes(String[])} = new String[] { "objectclass" }
* {@link SearchControls#setTimeLimit(int)} = 500 *
* * @author Eric Dalquist */ public class DefaultDirContextValidator implements DirContextValidator { /** * Logger for this class and sub-classes */ protected final Log logger = LogFactory.getLog(this.getClass()); private String base; private String filter; private SearchControls searchControls; /** * Create the default validator, creates {@link SearchControls} with search scope OBJECT_SCOPE, * a countLimit of 1, returningAttributes of objectclass and timeLimit of 500. * The default base is an empty string and the default filter is objectclass=* */ public DefaultDirContextValidator() { this(SearchControls.OBJECT_SCOPE); } /** * Create a validator with all the defaults of the default constructor, but with the search scope set to the * referred value. * * @param searchScope The searchScope to be set in the default SearchControls */ public DefaultDirContextValidator(int searchScope) { this.searchControls = new SearchControls(); this.searchControls.setSearchScope(searchScope); this.searchControls.setCountLimit(1); this.searchControls.setReturningAttributes(new String[] { "objectclass" }); this.searchControls.setTimeLimit(500); this.base = ""; this.filter = "objectclass=*"; } /** * @return the baseName */ public String getBase() { return this.base; } /** * @param base the baseName to set */ public void setBase(String base) { this.base = base; } /** * @return the filter */ public String getFilter() { return this.filter; } /** * @param filter the filter to set */ public void setFilter(String filter) { if (filter == null) { throw new IllegalArgumentException("filter may not be null"); } this.filter = filter; } /** * @return the searchControls */ public SearchControls getSearchControls() { return this.searchControls; } /** * @param searchControls the searchControls to set */ public void setSearchControls(SearchControls searchControls) { if (searchControls == null) { throw new IllegalArgumentException("searchControls may not be null"); } this.searchControls = searchControls; } /** * @see DirContextValidator#validateDirContext(DirContextType, javax.naming.directory.DirContext) */ public boolean validateDirContext(DirContextType contextType, DirContext dirContext) { Validate.notNull(contextType, "contextType may not be null"); Validate.notNull(dirContext, "dirContext may not be null"); try { final NamingEnumeration searchResults = dirContext.search(this.base, this.filter, this.searchControls); if (searchResults.hasMore()) { if (this.logger.isDebugEnabled()) { this.logger.debug("DirContext '" + dirContext + "' passed validation."); } return true; } } catch (Exception e) { if(this.logger.isDebugEnabled()) { this.logger.debug("DirContext '" + dirContext + "' failed validation with an exception.", e); } } if (this.logger.isInfoEnabled()) { this.logger.info("DirContext '" + dirContext + "' failed validation."); } return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy