org.wildfly.plugin.deployment.MatchPatternStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-maven-plugin Show documentation
Show all versions of wildfly-maven-plugin Show documentation
A maven plugin that allows various management operations to be executed on WildFly Application
Server.
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.plugin.deployment;
/**
* The strategy used when using a pattern to undeploy deployments.
*
* @author Mark Paluch
* @since 27.06.13 08:08
*/
public enum MatchPatternStrategy {
/**
* Undeploy the first matching deployment. The first deployment is determined by
* {@linkplain Comparable natural ordering} of the deployment names.
*/
FIRST,
/**
* Undeploy all deployments matching the pattern.
*/
ALL,
/**
* Fail if more than one deployment matches the pattern.
*/
FAIL
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy