Package fr.fuzeblocks.homeplugin.plugin
Interface HomePlugin
public interface HomePlugin
The interface Home plugin.
-
Method Summary
Modifier and TypeMethodDescriptionGets author.String[]Get authors string [ ].getName()Gets name.Gets version.voidInitialize the plugin.booleanIs cache enabled boolean.booleanIs placeholder api hooked boolean.booleanIs sql storage enabled boolean.voidstop()Stop the plugin and perform any necessary cleanup.
-
Method Details
-
getName
String getName()Gets name.- Returns:
- the name
-
getVersion
String getVersion()Gets version.- Returns:
- the version
-
getAuthor
String getAuthor()Gets author.- Returns:
- the author
-
getAuthors
String[] getAuthors()Get authors string [ ].- Returns:
- the string [ ]
-
initialize
void initialize()Initialize the plugin. -
stop
void stop()Stop the plugin and perform any necessary cleanup. -
isSqlStorageEnabled
boolean isSqlStorageEnabled()Is sql storage enabled boolean.- Returns:
- the boolean
-
isPlaceholderApiHooked
boolean isPlaceholderApiHooked()Is placeholder api hooked boolean.- Returns:
- the boolean
-
isCacheEnabled
boolean isCacheEnabled()Is cache enabled boolean.- Returns:
- the boolean
-