KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > event > UserMgmtEventListener


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 package com.sun.enterprise.admin.event;
25
26 import com.sun.enterprise.admin.event.AdminEventListener;
27
28 /**
29  * Listener interface to handle auth realm user management events.
30  */

31 public interface UserMgmtEventListener extends AdminEventListener {
32
33     /**
34      * user added.
35      * It is called whenever a UserMgmtEvent with action of
36      * UserMgmtEvent.ACTION_USERADD is received.
37      * @throws AdminEventListenerException when the listener is unable to
38      * process the event.
39      */

40     public void userAdded(UserMgmtEvent event)
41              throws AdminEventListenerException;
42
43     /**
44      * user deleted.
45      * It is called whenever a UserMgmtEvent with action of
46      * UserMgmtEvent.ACTION_USERREMOVE is received.
47      * @throws AdminEventListenerException when the listener is unable to
48      * process the event.
49      */

50     public void userRemoved(UserMgmtEvent event)
51              throws AdminEventListenerException;
52
53     /**
54      * user updated (attributes change).
55      * It is called whenever a UserMgmtEvent with action of
56      * UserMgmtEvent.ACTION_USERUPDATE is received.
57      * @throws AdminEventListenerException when the listener is unable to
58      * process the event.
59      */

60     public void userUpdated(UserMgmtEvent event)
61              throws AdminEventListenerException;
62
63 }
64
Popular Tags