private void redirect(PipelineContext pipelineContext, TurbineRunData rundata, String uriBroker) {
URIBroker urlBroker = assertNotNull(uriBrokerService.getURIBroker(uriBroker),
"uriBroker get from loginLink should not be null");
urlBroker.addQueryData(redirectParmeter, getRequestUrlWithQueryString());
rundata.setRedirectLocation(urlBroker.render());
pipelineContext.breakPipeline(Pipeline.TOP_LABEL);
}
private String getRequestUrlWithQueryString() {
StringBuffer requestUrl = request.getRequestURL();