Interface PluginApi
-
- All Known Implementing Classes:
PluginApi.NotImplemented
public interface PluginApi
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PluginApi.NotImplemented
A default implementation which allows source compatibility when adding new methods to the interface.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disable()
void
enable()
PluginInfo
get()
void
reload()
-
-
-
Method Detail
-
get
PluginInfo get() throws RestApiException
- Throws:
RestApiException
-
enable
void enable() throws RestApiException
- Throws:
RestApiException
-
disable
void disable() throws RestApiException
- Throws:
RestApiException
-
reload
void reload() throws RestApiException
- Throws:
RestApiException
-
-