Package org.springframework.social.support

Examples of org.springframework.social.support.HttpRequestDecorator.addParameter()


    this.parameterName = parameterName;
  }

  public ClientHttpResponse intercept(final HttpRequest request, final byte[] body, ClientHttpRequestExecution execution) throws IOException {
    HttpRequestDecorator protectedResourceRequest = new HttpRequestDecorator(request);
    protectedResourceRequest.addParameter(parameterName, accessToken);
    return execution.execute(protectedResourceRequest, body);
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.