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

org.jboss.as.ee.component.DependencyConfigurator Maven / Gradle / Ivy

There is a newer version: 35.0.0.Beta1
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.jboss.as.ee.component;

import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceBuilder;

/**
 * A configurator for a service dependency.
 *
 * @author David M. Lloyd
 * @param  the type of the service that is being configured
 */
public interface DependencyConfigurator {

    /**
     * Configure the dependency on the service builder.
     *
     * @param serviceBuilder the service builder
     * @param service
     */
    void configureDependency(ServiceBuilder serviceBuilder, final T service) throws DeploymentUnitProcessingException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy