KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > phoenix > interfaces > Embeddor


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.txt file.
7  */

8 package org.apache.avalon.phoenix.interfaces;
9
10 import org.apache.avalon.framework.activity.Executable;
11
12 /**
13  * This is the object that is interacted with to create, manage and
14  * dispose of the kernel and related resources.
15  *
16  * @author <a HREF="mail@leosimons.com">Leo Simons</a>
17  * @author <a HREF="peter at apache.org">Peter Donald</a>
18  */

19 public interface Embeddor
20     extends Executable
21 {
22     String JavaDoc ROLE = Embeddor.class.getName();
23
24     /**
25      * Request the Embeddor shutsdown.
26      */

27     void shutdown();
28 }
29
Popular Tags