blob: b88c6637ebf3454ca86614f5c43c24f5f4419eb1 [file] [log] [blame]
/*
* 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.api.ldap.extras;
import org.apache.directory.api.ldap.codec.api.ControlFactory;
import org.apache.directory.api.ldap.codec.api.ExtendedRequestFactory;
import org.apache.directory.api.ldap.codec.api.LdapApiService;
import org.apache.directory.api.ldap.codec.api.UnsolicitedResponseFactory;
import org.apache.directory.api.ldap.extras.controls.SyncDoneValue;
import org.apache.directory.api.ldap.extras.controls.SyncInfoValue;
import org.apache.directory.api.ldap.extras.controls.SyncRequestValue;
import org.apache.directory.api.ldap.extras.controls.SyncStateValue;
import org.apache.directory.api.ldap.extras.controls.ppolicy.PasswordPolicy;
import org.apache.directory.api.ldap.extras.controls.ppolicy_impl.PasswordPolicyFactory;
import org.apache.directory.api.ldap.extras.controls.syncrepl_impl.SyncDoneValueFactory;
import org.apache.directory.api.ldap.extras.controls.syncrepl_impl.SyncInfoValueFactory;
import org.apache.directory.api.ldap.extras.controls.syncrepl_impl.SyncRequestValueFactory;
import org.apache.directory.api.ldap.extras.controls.syncrepl_impl.SyncStateValueFactory;
import org.apache.directory.api.ldap.extras.extended.CancelRequest;
import org.apache.directory.api.ldap.extras.extended.CertGenerationRequest;
import org.apache.directory.api.ldap.extras.extended.GracefulDisconnectResponse;
import org.apache.directory.api.ldap.extras.extended.GracefulShutdownRequest;
import org.apache.directory.api.ldap.extras.extended.StoredProcedureRequest;
import org.apache.directory.api.ldap.extras.extended.ads_impl.cancel.CancelFactory;
import org.apache.directory.api.ldap.extras.extended.ads_impl.certGeneration.CertGenerationFactory;
import org.apache.directory.api.ldap.extras.extended.ads_impl.gracefulDisconnect.GracefulDisconnectFactory;
import org.apache.directory.api.ldap.extras.extended.ads_impl.gracefulShutdown.GracefulShutdownFactory;
import org.apache.directory.api.ldap.extras.extended.ads_impl.storedProcedure.StoredProcedureFactory;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
/**
* A BundleActivator for the ldap codec extras extension: extra ApacheDS and
* Apache Directory Studio specific controls and extended operations.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class ExtrasBundleActivator implements BundleActivator
{
private ServiceReference codecServiceRef;
/**
* {@inheritDoc}
*/
public void start( BundleContext context ) throws Exception
{
codecServiceRef = context.getServiceReference( LdapApiService.class.getName() );
LdapApiService codec = ( LdapApiService ) context.getService( codecServiceRef );
registerExtrasControls( codec );
registerExtrasExtendedOps( codec );
}
/**
* Registers all the extras controls present in this control pack.
*
* @param codec The codec service.
*/
private void registerExtrasControls( LdapApiService codec )
{
ControlFactory<?, ?> factory = new SyncDoneValueFactory( codec );
codec.registerControl( factory );
factory = new SyncInfoValueFactory( codec );
codec.registerControl( factory );
factory = new SyncRequestValueFactory( codec );
codec.registerControl( factory );
factory = new SyncStateValueFactory( codec );
codec.registerControl( factory );
factory = new PasswordPolicyFactory( codec );
codec.registerControl( factory );
}
/**
* Registers all the extras extended operations present in this control pack.
*
* @param codec The codec service.
*/
private void registerExtrasExtendedOps( LdapApiService codec )
{
// --------------------------------------------------------------------
// Register Extended Request Factories
// --------------------------------------------------------------------
ExtendedRequestFactory<?, ?> extReqfactory = new CancelFactory( codec );
codec.registerExtendedRequest( extReqfactory );
extReqfactory = new CertGenerationFactory( codec );
codec.registerExtendedRequest( extReqfactory );
extReqfactory = new GracefulShutdownFactory( codec );
codec.registerExtendedRequest( extReqfactory );
extReqfactory = new StoredProcedureFactory( codec );
codec.registerExtendedRequest( extReqfactory );
// --------------------------------------------------------------------
// Register Unsolicited Response Factories
// --------------------------------------------------------------------
UnsolicitedResponseFactory<?> unsolicitedResponseFactory = new GracefulDisconnectFactory( codec );
codec.registerUnsolicitedResponse( unsolicitedResponseFactory );
}
/**
* {@inheritDoc}
*/
public void stop( BundleContext context ) throws Exception
{
LdapApiService codec = ( LdapApiService ) context.getService( codecServiceRef );
codec.unregisterControl( SyncDoneValue.OID );
codec.unregisterControl( SyncInfoValue.OID );
codec.unregisterControl( SyncRequestValue.OID );
codec.unregisterControl( SyncStateValue.OID );
codec.unregisterControl( PasswordPolicy.OID );
codec.unregisterExtendedRequest( CancelRequest.EXTENSION_OID );
codec.unregisterExtendedRequest( CertGenerationRequest.EXTENSION_OID );
codec.unregisterExtendedRequest( GracefulShutdownRequest.EXTENSION_OID );
codec.unregisterExtendedRequest( StoredProcedureRequest.EXTENSION_OID );
codec.unregisterUnsolicitedResponse( GracefulDisconnectResponse.EXTENSION_OID );
}
}