com.github.t1.testcontainers.jee.NamedAsMod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jee-testcontainers Show documentation
Show all versions of jee-testcontainers Show documentation
testcontainers.org for Jakarta EE application servers
The newest version!
package com.github.t1.testcontainers.jee;
import lombok.Value;
public @Value class NamedAsMod implements Mod {
public static Mod namedAs(String name) { return new NamedAsMod(name); }
String name;
@Override public Deployable apply(Deployable deployable) {
return Deployable.copyOf(deployable, name);
}
}