Package org.java.plugin.boot
Interface ServiceApplication
-
- All Superinterfaces:
Application
public interface ServiceApplication extends Application
This is "marker" interface to represent a service style application that may be started and stopped.- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
stopApplication()
This method should stop the application.-
Methods inherited from interface org.java.plugin.boot.Application
startApplication
-
-
-
-
Method Detail
-
stopApplication
void stopApplication() throws java.lang.Exception
This method should stop the application. Don't call this method directly, useBoot.stopApplication(Application)
instead.- Throws:
java.lang.Exception
- if any error has occurred during application stopping
-
-