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

org.sdase.commons.starter.builder.PlatformBundleBuilder Maven / Gradle / Ivy

Go to download

A libraries to bootstrap services easily that follow the patterns and specifications promoted by the SDA SE

There is a newer version: 7.0.87
Show newest version
package org.sdase.commons.starter.builder;

import io.dropwizard.core.Configuration;
import io.dropwizard.core.setup.Bootstrap;
import org.sdase.commons.starter.SdaPlatformBundle;

/**
 * The final builder that is able to configure all the optional settings.
 *
 * @param  the type of the applications configuration class
 */
public interface PlatformBundleBuilder
    extends CorsCustomizer, SecurityCustomizer, JacksonCustomizer {

  /**
   * Builds the configured {@link SdaPlatformBundle} which must be added to the {@link Bootstrap} in
   * {@link io.dropwizard.core.Application#initialize(Bootstrap)}.
   *
   * @return the configured {@link SdaPlatformBundle}
   */
  SdaPlatformBundle build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy