workspaces incremental progress

This commit is contained in:
Jonathan Shook
2020-08-11 10:26:31 -05:00
parent 4e8370a6a3
commit 1b96f8876d
10 changed files with 274 additions and 57 deletions

View File

@@ -4,11 +4,18 @@ package io.nosqlbench.docsys.api;
* Any class which is annotated with <pre>{@code @Service(WebServiceObject.class)}</pre>
* will be found and loaded as a service.
*
* For the methods used to configure these objects, consult
* <A href="https://eclipse-ee4j.github.io/jersey.github.io/documentation/latest/jaxrs-resources.html#d0e2040">jax-rs resources documentation</A>
* For the methods used to configure these objects, consult the
* references below:
*
* and
* <A href="https://jax-rs.github.io/apidocs/2.1/">Jax-RS API Docs</A>
* @see <A href="https://eclipse-ee4j.github.io/jersey.github
* .io/documentation/latest/jaxrs-resources.html#d0e2040">Jersey jax-rs
* resources documentation</A>
*
* @see <A href="https://github.com/jax-rs/spec/blob/master/spec
* .pdf">JAX-RS: Java™ API for RESTful Web Services Version 2.1
* Proposed Final Draft June 9, 2017</A>
**
* @see <A href="https://jax-rs.github.io/apidocs/2.1/">Jax-RS API Docs</A>
*/
public interface WebServiceObject {
}

View File

@@ -17,6 +17,7 @@ import javax.ws.rs.core.MediaType;
@Singleton
@Path("_")
public class DocServerStatusEndpoint implements WebServiceObject {
private final static Logger logger =
LogManager.getLogger(DocServerStatusEndpoint.class);

View File

@@ -0,0 +1,32 @@
<template>
<v-app>
<v-app-bar app dark color="secondary">
<v-toolbar-title>NoSQLBench - Workspaces</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items>
<v-btn text href="https://github.com/nosqlbench/nosqlbench/wiki/Submitting-Feedback">SUBMIT FEEDBACK</v-btn>
</v-toolbar-items>
</v-app-bar>
<v-layout justify-center align-center>
<v-content>
<v-card max-width="344">
<v-card-title>workspace-name</v-card-title>
<v-card-text>workspace details go here</v-card-text>
</v-card>
</v-content>
</v-layout>
</v-app>
</template>
<script>
export default {
name: "workspaces.vue"
}
</script>
<style scoped>
</style>