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

org.scribe.extractors.AccessTokenExtractor Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
package org.scribe.extractors;

import org.scribe.model.*;

/**
 * Simple command object that extracts a {@link Token} from a String
 * 
 * @author Pablo Fernandez
 */
public interface AccessTokenExtractor
{
  /**
   * Extracts the access token from the contents of an Http Response
   *  
   * @param response the contents of the response
   * @return OAuth access token
   */
  public Token extract(String response);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy