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

org.wildfly.extension.clustering.ejb.LocalClientMappingsRegistryProviderResourceDefinition Maven / Gradle / Ivy

Go to download

Installs an extension that provides the distributable-ejb subsystem, that defines a set of profiles for use by distributable ejb applications.

There is a newer version: 33.0.2.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.wildfly.extension.clustering.ejb;

import org.jboss.as.controller.PathElement;

import java.util.function.UnaryOperator;

/**
 * Definition of the /subsystem=distributable-ejb/client-mappings-registry=local resource.
 *
 * @author Paul Ferraro
 * @author Richard Achmatowicz
 */
public class LocalClientMappingsRegistryProviderResourceDefinition extends ClientMappingsRegistryProviderResourceDefinition {

    static final PathElement PATH = pathElement("local");

    LocalClientMappingsRegistryProviderResourceDefinition() {
        super(PATH, UnaryOperator.identity(), LocalClientMappingsRegistryProviderServiceConfigurator::new);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy