mcconnell 2002/07/12 09:00:48
Added: assembly/src/java/org/apache/excalibur/merlin
Controller.java
Log:
was Manageable interface
Revision Changes Path
1.1
jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/Controller.java
Index: Controller.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.excalibur.merlin;
/**
* A service that provides support managable startup and shutdown.
* @author <a href="mailto:[EMAIL PROTECTED]">Stephen McConnell</a>
* @version $Revision: 1.1 $ $Date: 2002/07/12 16:00:48 $
*/
public interface Controller
{
/**
* Request the startup of the managable unit.
*/
void startup() throws Exception;
/**
* Request the shutdown of the managable unit.
*/
void shutdown();
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>