Uses of Class
org.wildfly.plugin.tools.Deployment
Packages that use Deployment
-
Uses of Deployment in org.wildfly.plugin.deployment
Methods in org.wildfly.plugin.deployment that return DeploymentModifier and TypeMethodDescriptionprotected Deployment
DeployOnlyMojo.createDeployment()
protected Deployment
RedeployOnlyMojo.createDeployment()
Methods in org.wildfly.plugin.deployment with parameters of type DeploymentModifier and TypeMethodDescriptionprotected DeploymentResult
DeployArtifactMojo.executeDeployment
(DeploymentManager deploymentManager, Deployment deployment) protected DeploymentResult
DeployMojo.executeDeployment
(DeploymentManager deploymentManager, Deployment deployment) protected DeploymentResult
RedeployMojo.executeDeployment
(DeploymentManager deploymentManager, Deployment deployment) -
Uses of Deployment in org.wildfly.plugin.tools
Methods in org.wildfly.plugin.tools that return DeploymentModifier and TypeMethodDescriptionDeployment.addServerGroup
(String serverGroup) Adds a server group for the deployment.Deployment.addServerGroups
(String... serverGroups) Adds the server groups for the deployment.Deployment.addServerGroups
(Collection<String> serverGroups) Adds the server groups for the deployment.static Deployment
Creates a new deployment for the path.static Deployment
Creates a new deployment for the file.static Deployment
Deployment.of
(InputStream content, String name) Creates a new deployment for the input stream.static Deployment
Creates a new deployment for the URL.static Deployment
Creates a new deployment for the path.Deployment.setEnabled
(boolean enabled) Sets whether or not the deployment should be enabled.Sets the name for the deployment.Deployment.setRuntimeName
(String runtimeName) Sets the runtime name for the deployment.Deployment.setServerGroups
(String... serverGroups) Sets the server groups for the deployment.Deployment.setServerGroups
(Collection<String> serverGroups) Sets the server groups for the deployment.Methods in org.wildfly.plugin.tools with parameters of type DeploymentModifier and TypeMethodDescriptionint
Deployment.compareTo
(Deployment o) static org.jboss.as.controller.client.Operation
DeploymentOperations.createAddDeploymentOperation
(Deployment deployment) Creates an operation to add deployment content to a running server.static org.jboss.as.controller.client.Operation
DeploymentOperations.createReplaceOperation
(Deployment deployment) Creates an operation to replace deployment content to a running server.DeploymentManager.deploy
(Deployment deployment) Deploys the content to the server.DeploymentManager.forceDeploy
(Deployment deployment) Deploys the content to the server if it does not already exist on the server.DeploymentManager.redeploy
(Deployment deployment) Redeploys the content to the server.Method parameters in org.wildfly.plugin.tools with type arguments of type DeploymentModifier and TypeMethodDescriptionstatic org.jboss.as.controller.client.Operation
DeploymentOperations.createAddDeploymentOperation
(Set<Deployment> deployments) Creates an operation to add deployment content to a running server for each deployment.static org.jboss.as.controller.client.Operation
DeploymentOperations.createReplaceOperation
(Set<Deployment> deployments) Creates an operation to replace deployment content to a running server.DeploymentManager.deploy
(Set<Deployment> deployments) Deploys the content of each deployment to the server.DeploymentManager.forceDeploy
(Set<Deployment> deployments) Deploys the content to the server if it does not already exist on the server.DeploymentManager.redeploy
(Set<Deployment> deployments) Redeploys the content to the server.