Package org.jboss.as.domain.http.server
Interface ConsoleAvailability
-
- All Known Implementing Classes:
ConsoleAvailabilityService
public interface ConsoleAvailabilityAllows callers to check the availability of the web console.By default, the web console is not available until the process controller transitions to RUNNING. The callers can try to make the console available even before by using the
isAvailable()method.- Author:
- Yeray Borges
-
-
Field Summary
Fields Modifier and Type Field Description static RuntimeCapability<Void>CONSOLE_AVAILABILITY_CAPABILITYCapability users of the controller use to read the web console availability and force it to make it available before the process controller is in RUNNING state.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAvailable()Gets the availability of the web console.voidsetAvailable()Tries to make the console available.
-
-
-
Field Detail
-
CONSOLE_AVAILABILITY_CAPABILITY
static final RuntimeCapability<Void> CONSOLE_AVAILABILITY_CAPABILITY
Capability users of the controller use to read the web console availability and force it to make it available before the process controller is in RUNNING state. This capability isn't necessarily directly related to this class but we declare it here as it's as good a place as any at this time.
-
-