![JAR search and dependency download from the Maven repository](/logo.png)
io.sphere.sdk.client.PlayJavaSphereClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-play-2_2-java-client_2.10 Show documentation
Show all versions of commercetools-play-2_2-java-client_2.10 Show documentation
commercetools-play-2_2-java-client
The newest version!
package io.sphere.sdk.client;
import play.libs.F;
import static java.util.Objects.requireNonNull;
public interface PlayJavaSphereClient extends AutoCloseable {
F.Promise execute(final SphereRequest sphereRequest);
void close();
static PlayJavaSphereClient of(final SphereClient underlying) {
final String message = "Underlying client instance should not be null.";
return PlayJavaSphereClientImpl.of(requireNonNull(underlying, message));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy