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

org.wildfly.plugin.tools.server.StandaloneConfiguration Maven / Gradle / Ivy

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

package org.wildfly.plugin.tools.server;

import org.wildfly.core.launcher.CommandBuilder;

/**
 * Represents the configuration used to boot a standalone server.
 *
 * @author James R. Perkins
 * @since 1.2
 */
public class StandaloneConfiguration extends Configuration {
    protected StandaloneConfiguration(final CommandBuilder commandBuilder) {
        super(commandBuilder);
    }

    @Override
    protected LaunchType launchType() {
        return LaunchType.STANDALONE;
    }

    @Override
    protected StandaloneConfiguration self() {
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy