1 package org.smartcomps.twister.common.lifecycle;
2
3 public interface LifecycleAwareResource {
4
5 public void create() throws LifecycleException;
6 public void start() throws LifecycleException;
7 public void stop() throws LifecycleException;
8 public void destroy() throws LifecycleException;
9
10 }
This page was automatically generated by Maven