Bump swagger ui from 2.2.5 to 2.2.10

Change-Id: I8ecfba9074dd77224e661cad0034480755fcc5eb
diff --git a/web/api/src/main/resources/docs/o2c.html b/web/api/src/main/resources/docs/o2c.html
new file mode 100755
index 0000000..0cde1d3
--- /dev/null
+++ b/web/api/src/main/resources/docs/o2c.html
@@ -0,0 +1,20 @@
+<script>
+var qp = null;
+if(/code|token|error/.test(window.location.hash)) {
+  qp = location.hash.substring(1);
+}
+else {
+  qp = location.search.substring(1);
+}
+qp = qp ? JSON.parse('{"' + qp.replace(/&/g, '","').replace(/=/g,'":"') + '"}',
+  function(key, value) {
+    return key===""?value:decodeURIComponent(value) }
+  ):{}
+
+if (window.opener.swaggerUiAuth.tokenUrl)
+    window.opener.processOAuthCode(qp);
+else
+    window.opener.onOAuthComplete(qp);
+
+window.close();
+</script>