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

org.wildfly.extension.picketlink.common.model.XMLElement Maven / Gradle / Ivy

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

package org.wildfly.extension.picketlink.common.model;

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

/**
 * 

XML elements used in the schema. This elements are not related with the subsystem's model. Usually they are used to group model elements. *

* * @author Pedro Silva * @since Mar 8, 2012 */ public enum XMLElement { RELATIONSHIPS("relationships"), LDAP_MAPPINGS("mappings"), IDENTITY_STORE_CREDENTIAL_HANDLERS("credential-handlers"), TRUST("trust"), KEYS("keys"), SERVICE_PROVIDERS("service-providers"), HANDLERS("handlers"); private static final Map xmlElements = new HashMap(); static { for (XMLElement element : values()) { xmlElements.put(element.getName(), element); } } private final String name; private XMLElement(String name) { this.name = name; } public static XMLElement forName(String name) { return xmlElements.get(name); } public String getName() { return this.name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy