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

org.openstack4j.model.identity.Token Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.identity;

import java.util.Date;

import org.openstack4j.model.ModelEntity;

/**
 * A token which is used during authentication allowing follow up calls to only supply the assigned token within the header avoiding re-authentication
 * 
 * @author Jeremy Unruh
 * @see http://docs.openstack.org/api/openstack-identity-service/2.0/content/POST_admin-authenticate_v2.0_tokens_Token_Operations.html
 */
public interface Token extends ModelEntity {

	/**
	 * The generated token ID created by the Identity Restful service
	 *
	 * @return the token identifier
	 */
	String getId();
	
	/**
	 * The expiring date/time of this token
	 *
	 * @return the expire date/time
	 */
	Date getExpires();
	
	/**
	 * @return the authentication version of this token
	 */
	AuthVersion getVersion();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy