KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > organization > UserProfileEventListener


1 /**
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  **/

5 package org.exoplatform.services.organization;
6
7 import org.exoplatform.services.database.XResources;
8
9 /**
10  * Author : Tuan Nguyen
11  * tuan08@users.sourceforge.net
12  * Date: Aug 22, 2003
13  * Time: 4:46:04 PM
14  */

15 public class UserProfileEventListener {
16   public void preSave(UserProfile user, boolean isNew, XResources xresources) throws Exception JavaDoc {
17   }
18
19   public void postSave(UserProfile user, boolean isNew, XResources xresources) throws Exception JavaDoc {
20   }
21
22   public void preDelete(UserProfile user, XResources xresources) throws Exception JavaDoc {
23   }
24
25   public void postDelete(UserProfile user, XResources xresources) throws Exception JavaDoc {
26   }
27 }
28
Popular Tags