ch.iterate.openstack.swift.AuthenticationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swift Show documentation
Show all versions of swift Show documentation
Java language bindings for OpenStack Swift
package ch.iterate.openstack.swift;
import org.apache.http.HttpResponse;
import java.util.Set;
import ch.iterate.openstack.swift.model.Region;
public class AuthenticationResponse extends Response {
private String authToken;
private Set regions;
public AuthenticationResponse(final HttpResponse r, final String authToken, final Set regions) {
super(r);
this.authToken = authToken;
this.regions = regions;
}
public String getAuthToken() {
return authToken;
}
public Set getRegions() {
return regions;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy