Interface IAvailabiltyResolver
-
- All Known Implementing Classes:
ServerConfigFeatureResolver
,WebAppFeatureResolver
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IAvailabiltyResolver
Common interface for resolving the availability of web endpoints.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isAvailable(IAvailabilityContext context)
Checks if the web endpoint is available with the given context.
-
-
-
Method Detail
-
isAvailable
boolean isAvailable(IAvailabilityContext context)
Checks if the web endpoint is available with the given context.- Parameters:
context
- for determining if the web endpoint is available.- Returns:
true
if the web endpoint is available andfalse
otherwise.
-
-