/* * Copyright (C) 2003-2007 eXo Platform SAS. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see. */ package org.exoplatform.services.organization; /** * Created by The eXo Platform SAS Author : Tuan Nguyen * tuan08@users.sourceforge.net Nov 15, 2005 If the other service or a third * party want to customize the initialization phase of the organization service. * they should make a customize class that implements this interface and * register their plugin code via xml configuration. An example of the * customization code is we have an organization service database intializer * that create the predifined the user , group and membership if the database is * empty. To Register the plugin code by the xml configuration: You need to * create a my.package.MyMembershipEventListener that implements this interface * and add a conf/portal/configuration.xml to the classpath. The * configuration.xml can be in a jar file. The file should contain the following * configuraiton: * *
 * <configuration>
 *   [..]
 *   <external-component-plugins>
 *     <target-component>org.exoplatform.services.organization.OrganizationService</target-component>
 *     <component-plugin>
 *        <name>my.customize.initializer.plugin</name>
 *        <set-method>addListenerPlugin</set-method>
 *        <type>my.package.MyInitializerPlugin</type>
 *        <description>your listener description</description>
 *      </component-plugin>
 *  </external-component-plugins>
 *  [...]
 * /configuration>
 * 
*/ public interface OrganizationServiceInitializer { public void init(OrganizationService service) throws Exception; }