Interface ComponentLifecyclePlugin
-
- All Known Implementing Classes:
BaseComponentLifecyclePlugin
public interface ComponentLifecyclePlugin- Since:
- Apr 18, 2005
- Version:
- $Id: ComponentLifecyclePlugin.java 5799 2006-05-28 17:55:42Z geaz $
- Author:
- Tuan Nguyen (tuan08@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddestroyComponent(ExoContainer container, Object component)StringgetDescription()List<String>getManageableComponents()StringgetName()voidinitComponent(ExoContainer container, Object component)voidsetDescription(String s)voidsetManageableComponents(List<String> list)voidsetName(String s)voidstartComponent(ExoContainer container, Object component)voidstopComponent(ExoContainer container, Object component)
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String s)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String s)
-
initComponent
void initComponent(ExoContainer container, Object component) throws Exception
- Throws:
Exception
-
startComponent
void startComponent(ExoContainer container, Object component) throws Exception
- Throws:
Exception
-
stopComponent
void stopComponent(ExoContainer container, Object component) throws Exception
- Throws:
Exception
-
destroyComponent
void destroyComponent(ExoContainer container, Object component) throws Exception
- Throws:
Exception
-
-