{
final ReportRenderContext reportRenderContext = activeContext;
final String path = getModel().getDrillDownPath();
if (path != null)
{
final AuthenticationStore authStore = reportRenderContext.getAuthenticationStore();
final String username = authStore.getUsername(path);
final String password = authStore.getPassword(path);
final int timeout = authStore.getIntOption(path, "timeout", 0);
pentahoPathWrapper.setLoginData(new AuthenticationData(path, username, password, timeout));
}
}
final Component c;