All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.tweeenveertig.openstack.headers.Token Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy