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

io.quarkus.test.services.containers.ContainerManagedResourceBinding Maven / Gradle / Ivy

There is a newer version: 1.6.0.Beta14
Show newest version
package io.quarkus.test.services.containers;

import io.quarkus.test.bootstrap.ManagedResource;
import io.quarkus.test.bootstrap.ServiceContext;

public interface ContainerManagedResourceBinding {
    /**
     * @param context
     * @return if the current managed resource applies for the current context.
     */
    boolean appliesFor(ServiceContext context);

    /**
     * Init and return the managed resource for the current context.
     *
     * @param builder
     * @return
     */
    ManagedResource init(ContainerManagedResourceBuilder builder);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy