Package de.griefed.serverpackcreator.api

Core-package of ServerPackCreator.

Server packs are created using de.griefed.serverpackcreator.api.ConfigurationModel, which can be checked for errors using de.griefed.serverpackcreator.api.ConfigurationHandler.checkConfiguration and any of the available variants. Afterwards, when the checks of the given configuration model return no errors, it is fed into de.griefed.serverpackcreator.api.ServerPackHandler.run, which creates finally creates your server pack.

In other words, the intended workflow is as follows:

  • Create a de.griefed.serverpackcreator.api.ConfigurationModel.

  • Check it using de.griefed.serverpackcreator.api.ConfigurationHandler.checkConfiguration or variants.

  • Create the server pack using de.griefed.serverpackcreator.api.ServerPackHandler.run.

Should you wish to customize your instance of ServerPackCreator, see de.griefed.serverpackcreator.api.ApplicationProperties. If you wish to enhance your instance of ServerPackCreator with plugins, see de.griefed.serverpackcreator.api.Applicationplugins and

See: Description