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

me.bazhenov.docker.ContainerGroup Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version
package me.bazhenov.docker;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.ElementType.TYPE_USE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@SuppressWarnings("WeakerAccess")
@Target({TYPE_USE, TYPE})
@Retention(value = RUNTIME)
public @interface ContainerGroup {

	Container[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy