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 audit module events. 30 */ 31 public interface AuditModuleEventListener extends AdminEventListener { 32 33 /** 34 * New audit module created. 35 * It is called whenever a AuditModuleEvent with action of 36 * AuditModuleEvent.ACTION_CREATE is received. 37 * @throws AdminEventListenerException when the listener is unable to 38 * process the event. 39 */ 40 public void auditModuleCreated(AuditModuleEvent event) 41 throws AdminEventListenerException; 42 43 /** 44 * Audit module deleted. 45 * It is called whenever a AuditModuleEvent with action of 46 * AuditModuleEvent.ACTION_DELETE is received. 47 * @throws AdminEventListenerException when the listener is unable to 48 * process the event. 49 */ 50 public void auditModuleDeleted(AuditModuleEvent event) 51 throws AdminEventListenerException; 52 53 /** 54 * Audit module updated (attributes change). 55 * It is called whenever a AuditModuleEvent with action of 56 * AuditModuleEvent.ACTION_UPDATE is received. 57 * @throws AdminEventListenerException when the listener is unable to 58 * process the event. 59 */ 60 public void auditModuleUpdated(AuditModuleEvent event) 61 throws AdminEventListenerException; 62 63 } 64