Skip navigation links

Package de.griefed.serverpackcreator

Core-package of ServerPackCreator.

See: Description

Package de.griefed.serverpackcreator Description

Core-package of ServerPackCreator.

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

In other words, the intended workflow is as follows:

  1. Create a ConfigurationModel.
  2. Check it using ConfigurationHandler.checkConfiguration(de.griefed.serverpackcreator.ConfigurationModel, boolean) or variants.
  3. Create the server pack using ServerPackHandler.run(de.griefed.serverpackcreator.ConfigurationModel).

Should you wish to customize your instance of ServerPackCreator, see ApplicationProperties. If you wish to enhance your instance of ServerPackCreator with addons, see ApplicationAddons and

Skip navigation links