Interface OAuth1Builder.FilterFeatureBuilder
-
- Enclosing interface:
- OAuth1Builder
public static interface OAuth1Builder.FilterFeatureBuilderBuilder of theFeature.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OAuth1Builder.FilterFeatureBuilderaccessToken(AccessToken accessToken)Set the Access Token that will be used for signing the requests.Featurebuild()Build theoauth 1 filter feature.
-
-
-
Method Detail
-
accessToken
OAuth1Builder.FilterFeatureBuilder accessToken(AccessToken accessToken)
Set the Access Token that will be used for signing the requests. If this method is not called, no access token will be defined in the resulting filter and it will have to be supplied usingOAuth1ClientSupport.OAUTH_PROPERTY_ACCESS_TOKENrequest property for each request. The property could be also used to override settings defined by this method.- Parameters:
accessToken- Access token.- Returns:
- this builder.
-
build
Feature build()
Build theoauth 1 filter feature. The feature can be then registered into the client configuration.- Returns:
- Client OAuth 1 feature.
-
-