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

org.wildfly.arquillian.domain.api.DomainManager Maven / Gradle / Ivy

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

package org.wildfly.arquillian.domain.api;

import java.util.Set;

/**
 * Allows a domain to be managed. If the container this manager belongs to was not started in manual mode any lifecycle
 * operations will result in an error.
 *
 * @author James R. Perkins
 */
public interface DomainManager extends ServerGroupManager, ServerManager {

    /**
     * Returns a set of the server group names.
     *
     * @return the server group names
     * @throws RuntimeException if the operation fails
     */
    Set getServerGroups();

    /**
     * Returns all the servers in this domain.
     *
     * @return all the servers
     * @throws RuntimeException if the operation fails
     */
    Set getServers();

    /**
     * Returns all the servers on the host.
     *
     * @param hostName the host to get the serves for
     *
     * @return the servers associated with the host
     * @throws RuntimeException if the operation fails
     */
    Set getServers(String hostName);

    /**
     * If the domain container has been started.
     *
     * @return {@code true} if the domain controller has been started, otherwise {@code false}
     */
    boolean isDomainStarted();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy