@Path(value="management") @Consumes(value="application/json") @Produces(value="application/json") public class ManagementResource extends Object
| Constructor and Description |
|---|
ManagementResource() |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
getHealthState() |
com.anaptecs.jeaf.xfun.api.info.ApplicationInfo |
getInfo()
Method returns general information about the application
|
javax.ws.rs.core.Response |
getLivenessState() |
WebContainerStateInfo |
getManagementContainerState()
Method returns information about the state of the management container.
|
javax.ws.rs.core.Response |
getReadinessState() |
WebContainerStateInfo |
getWorkloadContainerState()
Method returns information about the state of the workload container.
|
void |
shutdown()
Method initiates the shutdown of the JEAF Fast Lane server.
|
@GET @Path(value="info") public com.anaptecs.jeaf.xfun.api.info.ApplicationInfo getInfo()
ApplicationInfo General information. The method never returns null.
InfoProvider.getApplicationInfo()@GET @Path(value="workloadContainer") public WebContainerStateInfo getWorkloadContainerState()
WebContainerStateInfo Status information about the workload container. The method never returns null.@GET @Path(value="managementContainer") public WebContainerStateInfo getManagementContainerState()
WebContainerStateInfo Status information about the management container. The method never returns null.@DELETE @Path(value="shutdown") public void shutdown()
@GET @Path(value="health") public javax.ws.rs.core.Response getHealthState()
@GET @Path(value="health/liveness") public javax.ws.rs.core.Response getLivenessState()
@GET @Path(value="health/readiness") public javax.ws.rs.core.Response getReadinessState()
Copyright © 2021. All rights reserved.