All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.graceland.dropwizard.Initializer Maven / Gradle / Ivy

The newest version!
package io.graceland.dropwizard;

import io.dropwizard.setup.Bootstrap;
import io.graceland.PlatformConfiguration;

/**
 * This class is an escape hatch for customizing Dropwizard to your own liking, without having to be forced to use the
 * helper methods in the {@link io.graceland.plugin.AbstractPlugin}.
 * 

* All initializers are ran during the initialize phase of a Dropwizard service. */ public interface Initializer { /** * The method that will be called during the Dropwizard's {@link io.dropwizard.Application#initialize(io.dropwizard.setup.Bootstrap)} * method. * * @param bootstrap Provided by Dropwizard. */ void initialize(Bootstrap bootstrap); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy