Package org.wildfly.subsystem.service
Interface DeploymentServiceInstaller
-
- All Known Subinterfaces:
ServiceInstaller
- All Known Implementing Classes:
ServiceInstaller.DefaultServiceInstaller
public interface DeploymentServiceInstallerInstalls a service into the target associated with a deployment phase.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static DeploymentServiceInstallercombine(Collection<? extends DeploymentServiceInstaller> installers)Returns a compositeDeploymentServiceInstallerthat installs the specified installers.static DeploymentServiceInstallercombine(DeploymentServiceInstaller... installers)Returns a compositeDeploymentServiceInstallerthat installs the specified installers.voidinstall(DeploymentPhaseContext context)Installs a service into the target associated with the deployment phase of the specified context.
-
-
-
Method Detail
-
install
void install(DeploymentPhaseContext context)
Installs a service into the target associated with the deployment phase of the specified context.- Parameters:
context- a deployment phase context
-
combine
static DeploymentServiceInstaller combine(DeploymentServiceInstaller... installers)
Returns a compositeDeploymentServiceInstallerthat installs the specified installers.- Parameters:
installers- a variable number of installers- Returns:
- a composite installer
-
combine
static DeploymentServiceInstaller combine(Collection<? extends DeploymentServiceInstaller> installers)
Returns a compositeDeploymentServiceInstallerthat installs the specified installers.- Parameters:
installers- a collection of installers- Returns:
- a composite installer
-
-