
nl.tweeenveertig.openstack.headers.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joss Show documentation
Show all versions of joss Show documentation
Java Client library for OpenStack Storage (Swift)
package nl.tweeenveertig.openstack.headers;
/**
* The security token supplied by the OpenStack Identity component (Keystone). This token is added
* as a header to all secure command calls.
*/
public class Token extends SimpleHeader {
public static String X_AUTH_TOKEN = "X-Auth-Token";
public Token(final String token) {
super(token);
}
@Override
public String getHeaderName() {
return X_AUTH_TOKEN;
}
}