org.mockserver.maven.SettableFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-maven-plugin Show documentation
Show all versions of mockserver-maven-plugin Show documentation
A maven plugin to start and stop the MockServer
package org.mockserver.maven;
import com.google.common.util.concurrent.AbstractFuture;
public class SettableFuture extends AbstractFuture {
private SettableFuture() {
}
public static SettableFuture create() {
return new SettableFuture();
}
@Override
public boolean set(V value) {
return super.set(value);
}
@Override
public boolean setException(Throwable throwable) {
return super.setException(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy