// Var Params
for (Map.Entry<String,Object> param : status.varparams.entrySet()) {
builder.setVarParameter(param.getKey(), param.getValue());
}
return builder.rebuild(absolute);
}
catch (Exception e) {
addWarning("Exception adding parameters to URL " + completeURL + " :" + e.getClass().getName() + " - " + e.getMessage());
getTMLContext().getlog().error("Exception adding parameters to URL " + completeURL, e);
return completeURL;