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

org.jboss.as.ee.component.ComponentNamingMode Maven / Gradle / Ivy

There is a newer version: 35.0.0.Beta1
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.jboss.as.ee.component;

/**
 * A component's naming context operation mode.
 *
 * @author David M. Lloyd
 */
public enum ComponentNamingMode {
    /**
     * No component namespace is available.
     */
    NONE,
    /**
     * Use the module's namespace for the component namespace.
     */
    USE_MODULE,
    /**
     * Create a new namespace for this component.
     */
    CREATE,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy