/*
* 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
* <configuration> * [..] * <external-component-plugins> * <target-component>org.exoplatform.services.organization.OrganizationService</target-component> * <component-plugin> * <name>my.membership.listener</name> * <set-method>addListenerPlugin</set-method> * <type>my.package.MyMembershipEventListener</type> * <description>your listener description</description> * </component-plugin> * </external-component-plugins> * [...] * /configuration> **/ public class MembershipEventListener extends BaseComponentPlugin { /** * This method is called before the membership object is saved. * * @param m the membership to be saved * @param isNew If the membership is a new record in the database or not. * @throws Exception The developer can decide to throw the exception or not. * If the method throw an exception. The organization service should * not save the membership. */ public void preSave(Membership m, boolean isNew) throws Exception { } /** * This method is called after the membership has been saved but not commited * yet * * @param m The mebership object * @param isNew The membership is a new record or not. * @throws Exception The developer can decide to throw the exception or not. * If the method throw an exception. The organization service should * role back the data to the state before the method * MembershipHandler.linkMembership(..) is called. */ public void postSave(Membership m, boolean isNew) throws Exception { } /** * This method is called before the membership is removed * * @param m The membership object to be removed * @throws Exception he developer can decide to throw the exception or not. If * the method throw an exception. The organization service should * not remove the membership record from the database. */ public void preDelete(Membership m) throws Exception { } /** * This method should be called after the membership has been removed from the * database but not commited yet. * * @param m The membership which has been removed from the database. * @throws Exception The developer can decide to throw the exception or not. * If the method throw the exception, the organization service * should role back the database to the state before the method * MembershipHandler.linkMembership(..) is called. */ public void postDelete(Membership m) throws Exception { } }