GUI -- Implemented Java backend device list sorting for tables.

Change-Id: I0ed18ce473e71dfc1b9188be47fe2f5062dd384f
diff --git a/web/gui/src/main/webapp/app/view/device/device.html b/web/gui/src/main/webapp/app/view/device/device.html
index 15cfac7..2d8dd62 100644
--- a/web/gui/src/main/webapp/app/view/device/device.html
+++ b/web/gui/src/main/webapp/app/view/device/device.html
@@ -9,7 +9,7 @@
         <thead>
             <tr>
                 <th colId="available"></th>
-                <th colId="id" sortable>URI</th>
+                <th colId="id" sortable>Device ID</th>
                 <th colId="mfr" sortable>Vendor</th>
                 <th colId="hw" sortable>Hardware Version</th>
                 <th colId="sw" sortable>Software Version</th>
@@ -27,7 +27,7 @@
                 <td>{{dev.hw}}</td>
                 <td>{{dev.sw}}</td>
                 <td>{{dev.serial}}</td>
-                <td>{{dev.annotations.protocol}}</td>
+                <td>{{dev.protocol}}</td>
             </tr>
         </tbody>
     </table>