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 /***
11 * This interface represents a factory for producing Watchdogs.
12 *
13 * @author Andrei Ivanov
14 * @author Peter M. Goldstein <farsight@alum.mit.edu>
15 */
16 public interface WatchdogFactory {
17
18 /***
19 * Gets a Watchdog
20 *
21 * @param theTarget the WatchdogTarget to be triggered upon expiration
22 */
23 Watchdog getWatchdog(WatchdogTarget theTarget) throws Exception;
24
25 }
This page was automatically generated by Maven