/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.server.jgroups.subsystem; import java.util.HashMap; import java.util.Map; import javax.xml.XMLConstants; public enum Attribute { // must be first UNKNOWN(null), CHANNEL(ModelKeys.CHANNEL), CLUSTER(ModelKeys.CLUSTER), CLUSTER_ROLE(ModelKeys.CLUSTER_ROLE), @Deprecated DEFAULT_EXECUTOR(ModelKeys.DEFAULT_EXECUTOR), DEFAULT("default"), @Deprecated DEFAULT_STACK(ModelKeys.DEFAULT_STACK), DIAGNOSTICS_SOCKET_BINDING(ModelKeys.DIAGNOSTICS_SOCKET_BINDING), KEEPALIVE_TIME("keepalive-time"), MACHINE(ModelKeys.MACHINE), MAX_THREADS("max-threads"), MECH(ModelKeys.MECH), MIN_THREADS("min-threads"), MODULE(ModelKeys.MODULE), NAME(ModelKeys.NAME), NAMESPACE(XMLConstants.XMLNS_ATTRIBUTE), @Deprecated OOB_EXECUTOR(ModelKeys.OOB_EXECUTOR), QUEUE_LENGTH("queue-length"), RACK(ModelKeys.RACK), SECURITY_REALM(ModelKeys.SECURITY_REALM), SHARED(ModelKeys.SHARED), SITE(ModelKeys.SITE), SOCKET_BINDING(ModelKeys.SOCKET_BINDING), STACK(ModelKeys.STACK), @Deprecated THREAD_FACTORY(ModelKeys.THREAD_FACTORY), @Deprecated TIMER_EXECUTOR(ModelKeys.TIMER_EXECUTOR), TYPE(ModelKeys.TYPE), ; private final String name; private Attribute(final String name) { this.name = name; } /** * Get the local name of this element. * * @return the local name */ public String getLocalName() { return this.name; } private static final Map<String, Attribute> attributes = new HashMap<>(); static { for (Attribute attribute : values()) { String name = attribute.getLocalName(); if (name != null) { attributes.put(name, attribute); } } } public static Attribute forName(String localName) { Attribute attribute = attributes.get(localName); return (attribute != null) ? attribute : UNKNOWN; } }