/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.directory.studio.connection.core.io; import javax.naming.directory.SearchControls; import javax.naming.ldap.Control; import org.apache.directory.studio.common.core.jobs.StudioProgressMonitor; import org.apache.directory.studio.connection.core.Connection; import org.apache.directory.studio.connection.core.Connection.AliasDereferencingMethod; import org.apache.directory.studio.connection.core.Connection.ReferralHandlingMethod; import org.apache.directory.studio.connection.core.io.jndi.ReferralsInfo; /** * A naming enumeration that handles referrals itself. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public abstract class AbstractStudioNamingEnumeration implements StudioNamingEnumeration { protected Connection connection; protected String searchBase; protected String filter; protected SearchControls searchControls; protected AliasDereferencingMethod aliasesDereferencingMethod; protected ReferralHandlingMethod referralsHandlingMethod; protected Control[] controls; protected long requestNum; protected StudioProgressMonitor monitor; protected ReferralsInfo referralsInfo; protected long resultEntryCounter; /** * Creates a new instance of ReferralNamingEnumeration. * * @param connection the connection * @param ctx the JNDI context * @param searchBase the search base * @param filter the filter * @param searchControls the search controls * @param aliasesDereferencingMethod the aliases dereferencing method * @param referralsHandlingMethod the referrals handling method * @param controls the LDAP controls * @param monitor the progress monitor * @param referralsInfo the referrals info */ public AbstractStudioNamingEnumeration( Connection connection, String searchBase, String filter, SearchControls searchControls, AliasDereferencingMethod aliasesDereferencingMethod, ReferralHandlingMethod referralsHandlingMethod, Control[] controls, long requestNum, StudioProgressMonitor monitor, ReferralsInfo referralsInfo ) { this.connection = connection; this.searchBase = searchBase; this.filter = filter; this.searchControls = searchControls; this.aliasesDereferencingMethod = aliasesDereferencingMethod; this.referralsHandlingMethod = referralsHandlingMethod; this.controls = controls; this.requestNum = requestNum; this.monitor = monitor; this.referralsInfo = referralsInfo; this.resultEntryCounter = 0; } }