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

io.sphere.sdk.apiclient.commands.ApiClientDeleteCommand Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.apiclient.commands;

import io.sphere.sdk.apiclient.ApiClient;
import io.sphere.sdk.commands.DeleteCommand;

public interface ApiClientDeleteCommand extends DeleteCommand {

    static ApiClientDeleteCommand of(final ApiClient apiClient){
        return new ApiClientDeleteCommandImpl(apiClient.getId());
    }

    static ApiClientDeleteCommand of(final String  id){
        return new ApiClientDeleteCommandImpl(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy