io.fabric8.docker.client.impl.VolumeOperationImpl Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Original Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package io.fabric8.docker.client.impl;
import okhttp3.OkHttpClient;
import io.fabric8.docker.api.model.InlineVolumeCreate;
import io.fabric8.docker.api.model.Volume;
import io.fabric8.docker.api.model.VolumeCreateRequest;
import io.fabric8.docker.client.Config;
import io.fabric8.docker.client.DockerClientException;
import io.fabric8.docker.dsl.volume.AllFiltersInterface;
import io.fabric8.docker.dsl.volume.VolumeInspectDeleteInterface;
import io.fabric8.docker.dsl.volume.VolumeInterface;
import java.util.List;
public class VolumeOperationImpl extends BaseVolumeOperation implements VolumeInterface {
private static final String CREATE_OPERATION = "create";
public VolumeOperationImpl(OkHttpClient client, Config config) {
super(client, config, null, null);
}
@Override
public AllFiltersInterface> list() {
return new ListVolume(client, config);
}
@Override
public VolumeInspectDeleteInterface withName(String name) {
return new VolumeNamedOperationImpl(client, config, name);
}
@Override
public Volume create(VolumeCreateRequest container) {
try {
return handleCreate(container, Volume.class, CREATE_OPERATION);
} catch (Exception e) {
throw DockerClientException.launderThrowable(e);
}
}
@Override
public InlineVolumeCreate createNew() {
return new InlineVolumeCreate(new io.fabric8.docker.api.builder.Function() {
@Override
public Volume apply(VolumeCreateRequest input) {
return create(input);
}
});
}
}