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

org.wildfly.clustering.singleton.server.PrimaryProviderCommand Maven / Gradle / Ivy

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

package org.wildfly.clustering.singleton.server;

import org.wildfly.clustering.server.dispatcher.Command;
import org.wildfly.clustering.singleton.SingletonStatus;

/**
 * @author Paul Ferraro
 */
public enum PrimaryProviderCommand implements Command {
    INSTANCE;

    @Override
    public Boolean execute(SingletonStatus status) {
        return status.isPrimaryProvider();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy