Reputation: 418
I am creating an application in my JBOSS server that monitors the status of each of the deployments. I want to return Success if they are all OK and Failure if any of them are Failed. However, I do not know what statuses can be for a JBOSS deployment. I cannot seem to find the documentation of an enum online that lists the statuses of deployments. Where can I find a list of the potential statuses for a JBOSS deployment?
Upvotes: 1
Views: 151
Reputation: 17780
Have a look at WildScribe which describes the management model.
The current runtime status of a deployment. Possible status modes are OK, FAILED, and STOPPED. FAILED indicates a dependency is missing or a service could not start. STOPPED indicates that the deployment was not enabled or was manually stopped.
Upvotes: 1