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

edu.uiuc.ncsa.security.delegation.token.impl.AuthorizationGrantImpl Maven / Gradle / Ivy

There is a newer version: 4.3
Show newest version
package edu.uiuc.ncsa.security.delegation.token.impl;

import edu.uiuc.ncsa.security.delegation.token.AuthorizationGrant;

import java.net.URI;

/**
 * The OAuth 1.0a version of an AuthorizationGrant
 * 

Created by Jeff Gaynor
* on Mar 16, 2011 at 1:00:30 PM */ public class AuthorizationGrantImpl extends TokenImpl implements AuthorizationGrant { public AuthorizationGrantImpl(URI token, URI sharedSecret) { super(token, sharedSecret); } public AuthorizationGrantImpl(URI token) { super(token, null); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy