[OLINGO-708] Added location href to list page

This commit is contained in:
Michael Bolz 2015-07-09 14:05:34 +02:00
parent 8f6ceeae16
commit bf3905a550
1 changed files with 3 additions and 1 deletions

View File

@ -151,7 +151,9 @@ public class TechnicalAsyncService {
for (Map.Entry<String, AsyncRunner> entry : LOCATION_2_ASYNC_RUNNER.entrySet()) {
AsyncProcessor asyncProcessor = entry.getValue().getDispatched();
sb.append("<li><b>ID: </b>").append(entry.getKey()).append("<br/>")
.append("<b>Location: </b>").append(asyncProcessor.getLocation()).append("<br/>")
.append("<b>Location: </b><a href=\"")
.append(asyncProcessor.getLocation()).append("\">")
.append(asyncProcessor.getLocation()).append("</a><br/>")
.append("<b>Processor: </b>").append(asyncProcessor.getProcessorClass().getSimpleName()).append("<br/>")
.append("<b>Finished: </b>").append(entry.getValue().isFinished()).append("<br/>")
.append("</li>");