Advertisement
andoird213

OAuthFlowBuilder

Jan 30th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. /**
  2. * @param method method of presenting the access token to the resource
  3. * server (for example
  4. * {@link BearerToken#authorizationHeaderAccessMethod})
  5. * @param transport HTTP transport
  6. * @param jsonFactory JSON factory
  7. * @param tokenServerUrl token server URL
  8. * @param clientAuthentication client authentication or {@code null} for
  9. * none (see
  10. * {@link TokenRequest#setClientAuthentication(HttpExecuteInterceptor)}
  11. * )
  12. * @param clientId client identifier
  13. * @param authorizationServerEncodedUrl authorization server encoded URL
  14. */
  15. public Builder(AccessMethod method,
  16. HttpTransport transport,
  17. JsonFactory jsonFactory,
  18. GenericUrl tokenServerUrl,
  19. HttpExecuteInterceptor clientAuthentication,
  20. String clientId,
  21. String authorizationServerEncodedUrl) {
  22. super(method,
  23. transport,
  24. jsonFactory,
  25. tokenServerUrl,
  26. clientAuthentication,
  27. clientId,
  28. authorizationServerEncodedUrl);
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement