Skip to content

Instantly share code, notes, and snippets.

@csadilek
Last active August 29, 2015 14:01
Show Gist options
  • Save csadilek/667287e1e9291da4bb98 to your computer and use it in GitHub Desktop.
Save csadilek/667287e1e9291da4bb98 to your computer and use it in GitHub Desktop.
public class BasicAuthInterceptor implements RestClientInterceptor {
@Override
public void aroundInvoke(final RestCallContext context) {
RequestBuilder builder = context.getRequestBuilder();
builder.setUser(MyApp.getCurrentUser().getName());
builder.setPassword(MyApp.getCurrentUser().getPassword());
context.proceed();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment