1 /*
2 * Copyright (C) The Apache Software Foundation. All rights reserved.
3 *
4 * This software is published under the terms of the Apache Software License
5 * version 1.1, a copy of which has been included with this distribution in
6 * the LICENSE file.
7 */
8 package org.apache.james.util.watchdog;
9
10 import org.apache.avalon.cornerstone.services.scheduler.Target;
11
12 /***
13 * This interface represents an action to be triggered by a watchdog process.
14 *
15 * @author Andrei Ivanov
16 * @author Peter M. Goldstein <farsight@alum.mit.edu>
17 */
18 public interface WatchdogTarget {
19
20 void execute();
21 }
This page was automatically generated by Maven