@Path(value="/")
@Scope(value="prototype")
public class RootResource
extends java.lang.Object
| Constructor and Description |
|---|
RootResource() |
| Modifier and Type | Method and Description |
|---|---|
AdminResourceV2 |
getAdminResource() |
AppResource |
getAppResource() |
ClientResourceV2 |
getClientResource() |
java.lang.String |
getIndexHtml() |
SystemStatus |
getStatus() |
javax.ws.rs.core.Response |
healthCheck$GET() |
@GET
@Produces(value="text/html")
public java.lang.String getIndexHtml()
throws java.io.IOException
java.io.IOException@GET @Path(value="/health-check") @Produces(value="text/html") public javax.ws.rs.core.Response healthCheck$GET()
@Path(value="/app") public AppResource getAppResource()
@Path(value="/api/v2") public ClientResourceV2 getClientResource()
@Path(value="/api/v2/admin") public AdminResourceV2 getAdminResource()
@GET @Path(value="/api/v2/status") @Consumes(value="*/*") @Produces(value="application/json") public SystemStatus getStatus()