mcconnell 2002/07/06 21:35:33 Added: assembly/src/java/org/apache/excalibur/merlin/kernel Manageable.java Log: Common interface shared by a Kernel and a Container Revision Changes Path 1.1 jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/kernel/Manageable.java Index: Manageable.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.kernel; /** * 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/07 04:35:33 $ */ public interface Manageable { /** * 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]>