blob: ae9e9dc82a33dc95dfcf2cd20900a2827dc1040b [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.shared.ldap.extras;
import org.apache.directory.shared.ldap.codec.api.ControlFactory;
import org.apache.directory.shared.ldap.codec.api.ExtendedRequestFactory;
import org.apache.directory.shared.ldap.codec.api.LdapCodecService;
import org.apache.directory.shared.ldap.codec.api.UnsolicitedResponseFactory;
import org.apache.directory.shared.ldap.extras.controls.PasswordPolicy;
import org.apache.directory.shared.ldap.extras.controls.SyncDoneValue;
import org.apache.directory.shared.ldap.extras.controls.SyncInfoValue;
import org.apache.directory.shared.ldap.extras.controls.SyncModifyDn;
import org.apache.directory.shared.ldap.extras.controls.SyncRequestValue;
import org.apache.directory.shared.ldap.extras.controls.SyncStateValue;
import org.apache.directory.shared.ldap.extras.controls.ppolicy_impl.PasswordPolicyFactory;
import org.apache.directory.shared.ldap.extras.controls.syncrepl_impl.SyncDoneValueFactory;
import org.apache.directory.shared.ldap.extras.controls.syncrepl_impl.SyncInfoValueFactory;
import org.apache.directory.shared.ldap.extras.controls.syncrepl_impl.SyncModifyDnFactory;
import org.apache.directory.shared.ldap.extras.controls.syncrepl_impl.SyncRequestValueFactory;
import org.apache.directory.shared.ldap.extras.controls.syncrepl_impl.SyncStateValueFactory;
import org.apache.directory.shared.ldap.extras.extended.CancelRequest;
import org.apache.directory.shared.ldap.extras.extended.CertGenerationRequest;
import org.apache.directory.shared.ldap.extras.extended.GracefulDisconnect;
import org.apache.directory.shared.ldap.extras.extended.GracefulShutdownRequest;
import org.apache.directory.shared.ldap.extras.extended.StoredProcedureRequest;
import org.apache.directory.shared.ldap.extras.extended.ads_impl.CancelFactory;
import org.apache.directory.shared.ldap.extras.extended.ads_impl.CertGenerationFactory;
import org.apache.directory.shared.ldap.extras.extended.ads_impl.GracefulDisconnectFactory;
import org.apache.directory.shared.ldap.extras.extended.ads_impl.GracefulShutdownFactory;
import org.apache.directory.shared.ldap.extras.extended.ads_impl.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( LdapCodecService.class.getName() );
LdapCodecService codec = ( LdapCodecService ) 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( LdapCodecService codec )
{
ControlFactory<?,?> factory = new SyncDoneValueFactory( codec );
codec.registerControl( factory );
factory = new SyncInfoValueFactory( codec );
codec.registerControl( factory );
factory = new SyncModifyDnFactory( 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( LdapCodecService codec )
{
// --------------------------------------------------------------------
// Register Extended Request Factories
// --------------------------------------------------------------------
ExtendedRequestFactory<?,?> extReqfactory = new CancelFactory();
codec.registerExtendedRequest( extReqfactory );
extReqfactory = new CertGenerationFactory();
codec.registerExtendedRequest( extReqfactory );
extReqfactory = new GracefulShutdownFactory();
codec.registerExtendedRequest( extReqfactory );
extReqfactory = new StoredProcedureFactory();
codec.registerExtendedRequest( extReqfactory );
// --------------------------------------------------------------------
// Register Unsolicited Response Factories
// --------------------------------------------------------------------
UnsolicitedResponseFactory<?> unsolicitedResponseFactory = new GracefulDisconnectFactory();
codec.registerUnsolicitedResponse( unsolicitedResponseFactory );
}
/**
* {@inheritDoc}
*/
public void stop( BundleContext context ) throws Exception
{
LdapCodecService codec = ( LdapCodecService ) context.getService( codecServiceRef );
codec.unregisterControl( SyncDoneValue.OID );
codec.unregisterControl( SyncInfoValue.OID );
codec.unregisterControl( SyncModifyDn.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( GracefulDisconnect.EXTENSION_OID );
}
}