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

com.github.restup.ResourceRegistryBuilderDecorator Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.restup;

import com.github.restup.registry.ResourceRegistry.Builder;

@FunctionalInterface
public interface ResourceRegistryBuilderDecorator {

    /**
     * Decorate a {@link Builder}.  Useful in dependency injection frameworks such as Spring where a
     * default builder can complete basic wiring requiring only customization to be configured.
     *
     * @param builder to decorate
     * @return the builder
     */
    Builder decorate(Builder builder);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy