edu.uiuc.ncsa.security.delegation.token.AuthorizationGrant Maven / Gradle / Ivy
package edu.uiuc.ncsa.security.delegation.token;
/**
* An authorization grant. This will be exchanged later for an {@link AccessToken}
* Created by Jeff Gaynor
* on Mar 11, 2011 at 4:10:50 PM
*/
public interface AuthorizationGrant extends Token {
/**
* An optional shared secret for those implementations that support or require it. Ignored if
* unused.
*
* @return
*/
String getSharedSecret();
void setSharedSecret(String sharedSecret);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy