donaldp 2002/06/20 02:52:58
Added: container/src/java/org/apache/myrmidon/interfaces/service
ServiceKernel.java
Log:
Temporary commit of Myrmidon ServiceKernel interface (different from Avalon
one)
Revision Changes Path
1.1
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/service/ServiceKernel.java
Index: ServiceKernel.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.myrmidon.interfaces.service;
import org.apache.myrmidon.api.TaskException;
/**
* This is a stop gap service aimed at enabling management
* of services. In future a more fully funvtional version will
* be used in its place.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @version $Revision: 1.1 $ $Date: 2002/06/20 09:52:58 $
*/
public interface ServiceKernel
{
void registerService( String role, Object service )
throws TaskException;
Object getService( String role )
throws TaskException;
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>