View Javadoc

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 
5    * in compliance with the License.
6    * 
7    * You can obtain a copy of the license at 
8    * http://www.sun.com/cddl/cddl.html. 
9    * See the License for the specific language governing 
10   * permissions and limitations under the License.
11   * 
12   * When distributing Covered Code, include this CDDL 
13   * HEADER in each file and include the License file at 
14   * license.txt.  If applicable, add the following below 
15   * this CDDL HEADER, with the fields enclosed by brackets 
16   * "[]" replaced with your own identifying information: 
17   * Portions Copyright [yyyy] [name of copyright owner]
18   * 
19   * Portions Copyright 2004 eBay, Inc.
20   */
21  package com.ebay.carad.os.vitalsigns.listeners;
22  
23  import com.ebay.carad.os.vitalsigns.IDashboardAgent;
24  import com.ebay.carad.os.vitalsigns.IDashboardReport;
25  import com.ebay.carad.os.vitalsigns.IReportingListenerContainer;
26  import com.ebay.carad.os.vitalsigns.ReportingException;
27  
28  /***
29   * @author Jeremy Thomerson
30   * @version $Id$
31   */
32  public class AbstractReportingListener implements IReportingListener {
33  
34      //private static final Logger LOGGER = Logger.getLogger(AbstractReportingListener.class);
35  
36      public void reportingPreStart(IDashboardAgent agent) {
37          // no-op
38      }
39  
40      public void reportRan(IDashboardAgent agent, IDashboardReport report) {
41          // no-op
42      }
43  
44      public void reportingComplete(IDashboardAgent agent) {
45          // no-op
46      }
47  
48      public void reportingException(ReportingException exception, IReportingListenerContainer agent, IDashboardReport report) {
49          // no-op
50      }
51  
52  }
53