Package org.guvnor.ala.ui.service
Interface ProvisioningScreensService
-
public interface ProvisioningScreensServiceService for holding methods oriented to the different provisioning-ui screens and client widgets.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProvidersInfogetProvidersInfo(ProviderTypeKey providerTypeKey)Gets the information about all the defined providers for a given provider type and loads provider type at the same time.RuntimesInfogetRuntimesInfo(ProviderKey providerKey)Gets the information about the runtimes associated to a given provider and loads the provider at the same time.booleanhasRuntimes(ProviderKey providerKey)
-
-
-
Method Detail
-
getProvidersInfo
ProvidersInfo getProvidersInfo(ProviderTypeKey providerTypeKey)
Gets the information about all the defined providers for a given provider type and loads provider type at the same time.- Parameters:
providerTypeKey-- Returns:
- a ProviderInfo with all the providers related to the provider type, or null if the provider type not exists.
-
getRuntimesInfo
RuntimesInfo getRuntimesInfo(ProviderKey providerKey)
Gets the information about the runtimes associated to a given provider and loads the provider at the same time.- Parameters:
providerKey-- Returns:
- a RuntimeInfo with the runtimes associated to the providerKey and the Provider information, or null if the provider not exists.
-
hasRuntimes
boolean hasRuntimes(ProviderKey providerKey)
- Parameters:
providerKey-- Returns:
- true if there are runtimes associated to the given provider, false in any other case.
-
-