org.wildfly.extension.clustering.ejb.LocalClientMappingsRegistryProviderResourceDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-ejb-extension Show documentation
Show all versions of wildfly-clustering-ejb-extension Show documentation
Installs an extension that provides the distributable-ejb subsystem, that defines a set of profiles for use by distributable ejb applications.
/*
* 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);
}
}