Package org.scribe.extractors
Class BaseStringExtractorImpl
- java.lang.Object
-
- org.scribe.extractors.BaseStringExtractorImpl
-
- All Implemented Interfaces:
BaseStringExtractor
public class BaseStringExtractorImpl extends java.lang.Object implements BaseStringExtractor
Default implementation ofBaseStringExtractor
. Conforms to OAuth 1.0a
-
-
Constructor Summary
Constructors Constructor Description BaseStringExtractorImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
extract(OAuthRequest request)
Extracts an url-encoded base string from theOAuthRequest
.
-
-
-
Method Detail
-
extract
public java.lang.String extract(OAuthRequest request)
Extracts an url-encoded base string from theOAuthRequest
. See the oauth spec for more info on this.- Specified by:
extract
in interfaceBaseStringExtractor
- Parameters:
request
- the OAuthRequest- Returns:
- the url-encoded base string
-
-