Class OrchestraPlugin

java.lang.Object
org.bukkit.plugin.PluginBase
org.bukkit.plugin.java.JavaPlugin
com.iantapply.orchestra.platform.paper.OrchestraPlugin
All Implemented Interfaces:
io.papermc.paper.plugin.lifecycle.event.LifecycleEventOwner, net.kyori.adventure.key.Namespaced, org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter, org.bukkit.command.TabExecutor, org.bukkit.plugin.Plugin

public final class OrchestraPlugin extends org.bukkit.plugin.java.JavaPlugin
Paper entry point. All platform wiring lives here; orchestration behavior does not.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates the Paper plugin entry point.
  • Method Summary

    Modifier and Type
    Method
    Description
    Exposes the active engine to other plugins.
    void
    Stops the engine and closes owned resources in reverse creation order.
    void
    Wires infrastructure, loads definitions, recovers work, and starts services.

    Methods inherited from class org.bukkit.plugin.java.JavaPlugin

    getClassLoader, getCommand, getConfig, getDataFolder, getDefaultBiomeProvider, getDefaultWorldGenerator, getDescription, getFile, getLifecycleManager, getLogger, getPlugin, getPluginLoader, getPluginMeta, getProvidingPlugin, getResource, getServer, getTextResource, init, init, isEnabled, isNaggable, onCommand, onLoad, onTabComplete, registerCommand, registerCommand, registerCommand, registerCommand, reloadConfig, saveConfig, saveDefaultConfig, saveResource, setEnabled, setNaggable, toString

    Methods inherited from class org.bukkit.plugin.PluginBase

    equals, getName, hashCode, namespace

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.bukkit.plugin.Plugin

    getComponentLogger, getDataPath, getLog4JLogger, getSLF4JLogger
  • Constructor Details

    • OrchestraPlugin

      public OrchestraPlugin()
      Creates the Paper plugin entry point.
  • Method Details

    • onEnable

      public void onEnable()
      Wires infrastructure, loads definitions, recovers work, and starts services.
      Specified by:
      onEnable in interface org.bukkit.plugin.Plugin
      Overrides:
      onEnable in class org.bukkit.plugin.java.JavaPlugin
    • onDisable

      public void onDisable()
      Stops the engine and closes owned resources in reverse creation order.
      Specified by:
      onDisable in interface org.bukkit.plugin.Plugin
      Overrides:
      onDisable in class org.bukkit.plugin.java.JavaPlugin
    • engine

      public OrchestratorEngine engine()
      Exposes the active engine to other plugins.
      Returns:
      enabled orchestration engine
      Throws:
      IllegalStateException - before plugin enablement