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

org.testcontainers.core.CreateContainerCmdModifier Maven / Gradle / Ivy

The newest version!
package org.testcontainers.core;

import com.github.dockerjava.api.command.CreateContainerCmd;

/**
 * Callback interface that can be used to customize a {@link CreateContainerCmd}.
 */
public interface CreateContainerCmdModifier {
    /**
     * Callback to modify a {@link CreateContainerCmd} instance.
     */
    CreateContainerCmd modify(CreateContainerCmd createContainerCmd);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy