package com.dexels.oauth.api; /** * An ActivationToken is issued after a successful registration request to a * client. This token can be used together with the client id to activate the * account. Only active accounts can obtain {@link AccessToken}s. * * An ActivationToken can only be used once. */ public interface ActivationToken extends Token { }