cloud.localstack.docker.annotation.LocalstackDockerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
package cloud.localstack.docker.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.Inherited;
/**
* An annotation to provide parameters to the LocalstackDockerTestRunner
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface LocalstackDockerProperties {
/**
* Used for determining the host name of the machine running the docker containers
* so that the containers can be addressed.
*/
Class extends IHostNameResolver> hostNameResolver() default LocalHostNameResolver.class;
/**
* Used for injecting environment variables into the container. Implement a class that provides a map of the environment
* variables and they will be injected into the container on start-up
*/
Class extends IEnvironmentVariableProvider> environmentVariableProvider() default DefaultEnvironmentVariableProvider.class;
/**
* Determines if a new image is pulled from the docker repo before the tests are run.
*/
boolean pullNewImage() default true;
/**
* Determines if the container should expose the default local stack ports (4567-4583) or if it should expose randomized ports
* in order to prevent conflicts with other localstack containers running on the same machine
*/
boolean randomizePorts() default false;
/**
* Determines which services should be run when the localstack starts. When empty, all the services available get
* up and running.
*/
String[] services() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy