
nl.tweeenveertig.openstack.command.container.CreateContainerCommand Maven / Gradle / Ivy
package nl.tweeenveertig.openstack.command.container;
import nl.tweeenveertig.openstack.command.identity.access.AccessImpl;
import nl.tweeenveertig.openstack.model.Account;
import nl.tweeenveertig.openstack.command.core.httpstatus.HttpStatusChecker;
import nl.tweeenveertig.openstack.command.core.httpstatus.HttpStatusFailCondition;
import nl.tweeenveertig.openstack.command.core.httpstatus.HttpStatusMatch;
import nl.tweeenveertig.openstack.command.core.httpstatus.HttpStatusSuccessCondition;
import nl.tweeenveertig.openstack.model.Container;
import org.apache.http.HttpStatus;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPut;
public class CreateContainerCommand extends AbstractContainerCommand {
public CreateContainerCommand(Account account, HttpClient httpClient, AccessImpl access, Container container) {
super(account, httpClient, access, container);
}
@Override
protected HttpPut createRequest(String url) {
return new HttpPut(url);
}
@Override
protected HttpStatusChecker[] getStatusCheckers() {
return new HttpStatusChecker[] {
new HttpStatusSuccessCondition(new HttpStatusMatch(HttpStatus.SC_CREATED)),
new HttpStatusFailCondition(new HttpStatusMatch(HttpStatus.SC_ACCEPTED))
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy