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

org.jboss.as.xts.Element Maven / Gradle / Ivy

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

package org.jboss.as.xts;

import java.util.HashMap;
import java.util.Map;

/**
 * Enumeration of elements used in the xts subsystem.
 *
 * @author Andrew Dinn
 */
enum Element {
    // must be first
    UNKNOWN(null),

    HOST(CommonAttributes.HOST),
    XTS_ENVIRONMENT(CommonAttributes.XTS_ENVIRONMENT),
    DEFAULT_CONTEXT_PROPAGATION(CommonAttributes.DEFAULT_CONTEXT_PROPAGATION),
    ASYNC_REGISTRATION(CommonAttributes.ASYNC_REGISTRATION),
    ;

    private final String name;

    Element(final String name) {
        this.name = name;
    }

    /**
     * Get the local name of this element.
     *
     * @return the local name
     */
    public String getLocalName() {
        return name;
    }

    private static final Map MAP;

    static {
        final Map map = new HashMap();
        for (Element element : values()) {
            final String name = element.getLocalName();
            if (name != null) { map.put(name, element); }
        }
        MAP = map;
    }

    public static Element forName(String localName) {
        final Element element = MAP.get(localName);
        return element == null ? UNKNOWN : element;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy