org.openstack4j.openstack.identity.internal.ServiceManagerServiceImpl Maven / Gradle / Ivy
package org.openstack4j.openstack.identity.internal;
import static com.google.common.base.Preconditions.checkNotNull;
import java.util.List;
import org.openstack4j.api.identity.ServiceManagerService;
import org.openstack4j.model.compute.ActionResponse;
import org.openstack4j.model.identity.Service;
import org.openstack4j.model.identity.ServiceEndpoint;
import org.openstack4j.openstack.identity.domain.KeystoneService;
import org.openstack4j.openstack.identity.domain.KeystoneService.Services;
import org.openstack4j.openstack.identity.domain.KeystoneServiceEndpoint;
import org.openstack4j.openstack.identity.domain.KeystoneServiceEndpoint.ServiceEndpoints;
import org.openstack4j.openstack.internal.BaseOpenStackService;
/**
* Manages OpenStack service(s), such as Compute (Nova), Object Storage (Swift), or Image Service (Glance).
*
* @author Jeremy Unruh
*/
public class ServiceManagerServiceImpl extends BaseOpenStackService implements ServiceManagerService {
/**
* {@inheritDoc}
*/
@Override
public List extends Service> list() {
return get(Services.class, uri("/OS-KSADM/services")).execute().getList();
}
/**
* {@inheritDoc}
*/
@Override
public Service get(String serviceId) {
checkNotNull(serviceId);
return get(KeystoneService.class, uri("/OS-KSADM/services/%s", serviceId)).execute();
}
/**
* {@inheritDoc}
*/
@Override
public Service create(String name, String type, String description) {
checkNotNull(name);
checkNotNull(type);
checkNotNull(description);
return post(KeystoneService.class, uri("/OS-KSADM/services"))
.entity(KeystoneService.builder().name(name).type(type).description(description).build())
.execute();
}
/**
* {@inheritDoc}
*/
@Override
public ActionResponse delete(String serviceId) {
checkNotNull(serviceId);
return deleteWithResponse(uri("/OS-KSADM/services/%s", serviceId)).execute();
}
/**
* {@inheritDoc}
*/
@Override
public List extends ServiceEndpoint> listEndpoints() {
return get(ServiceEndpoints.class, uri("/endpoints")).execute().getList();
}
/**
* {@inheritDoc}
*/
@Override
public ServiceEndpoint createEndpoint(String region, String serviceId, String publicURL, String adminURL, String internalURL) {
checkNotNull(region);
checkNotNull(serviceId);
checkNotNull(publicURL);
checkNotNull(adminURL);
checkNotNull(internalURL);
return post(KeystoneServiceEndpoint.class, uri("/endpoints"))
.entity(KeystoneServiceEndpoint.builder().region(region).serviceId(serviceId).publicURL(publicURL).adminURL(adminURL).internalURL(internalURL).build())
.execute();
}
/**
* {@inheritDoc}
*/
@Override
public ActionResponse deleteEndpoint(String endpointId) {
checkNotNull(endpointId);
return deleteWithResponse(uri("/endpoints/%s", endpointId)).execute();
}
}