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

org.wildfly.plugin.tools.DeploymentDescription Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.plugin.tools;

import java.util.Set;

/**
 * Represents a default description for a deployment.
 *
 * @author James R. Perkins
 */
@SuppressWarnings("WeakerAccess")
public interface DeploymentDescription {

    /**
     * Returns the name for this deployment.
     *
     * @return the name for this deployment
     */
    String getName();

    /**
     * Returns the server groups for this deployment.
     *
     * @return a set of server groups for this deployment
     */
    Set getServerGroups();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy