All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.plugin.deployment.MatchPatternStrategy Maven / Gradle / Ivy

Go to download

A maven plugin that allows various management operations to be executed on WildFly Application Server.

There is a newer version: 5.1.1.Final
Show newest version
/*
 * 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