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

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

There is a newer version: 1.3.7
Show newest version
package org.scribe.extractors;

import org.scribe.model.*;

/**
 * Simple command object that extracts a base string from a {@link OAuthRequest}
 * 
 * @author Pablo Fernandez
 */
public interface BaseStringExtractor
{
  /**
   * Extracts an url-encoded base string from the {@link OAuthRequest}.
   * 
   * See the oauth spec for more info on this.
   * 
   * @param request the OAuthRequest
   * @return the url-encoded base string
   */
  String extract(OAuthRequest request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy