Package fr.fuzeblocks.homeplugin.plugin
Interface HomePlugin
public interface HomePlugin
The interface Home plugin.
- 
Method SummaryModifier 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- 
getNameString getName()Gets name.- Returns:
- the name
 
- 
getVersionString getVersion()Gets version.- Returns:
- the version
 
- 
getAuthorString getAuthor()Gets author.- Returns:
- the author
 
- 
getAuthorsString[] getAuthors()Get authors string [ ].- Returns:
- the string [ ]
 
- 
initializevoid initialize()Initialize the plugin.
- 
stopvoid stop()Stop the plugin and perform any necessary cleanup.
- 
isSqlStorageEnabledboolean isSqlStorageEnabled()Is sql storage enabled boolean.- Returns:
- the boolean
 
- 
isPlaceholderApiHookedboolean isPlaceholderApiHooked()Is placeholder api hooked boolean.- Returns:
- the boolean
 
- 
isCacheEnabledboolean isCacheEnabled()Is cache enabled boolean.- Returns:
- the boolean
 
 
-