/* * JBoss, Home of Professional Open Source. * Copyright 2013, 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.wildfly.extension.picketlink.federation; import org.jboss.as.controller.ModelVersion; import org.jboss.as.controller.persistence.SubsystemMarshallingContext; import org.jboss.dmr.ModelNode; import org.jboss.staxmapper.XMLElementReader; import org.jboss.staxmapper.XMLElementWriter; import org.wildfly.extension.picketlink.federation.model.parser.FederationSubsystemReader_1_0; import org.wildfly.extension.picketlink.federation.model.parser.FederationSubsystemReader_2_0; import org.wildfly.extension.picketlink.federation.model.parser.FederationSubsystemWriter; import java.util.HashMap; import java.util.List; import java.util.Map; /** * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a> */ public enum Namespace { PICKETLINK_FEDERATION_1_0(1, 0, 0, new FederationSubsystemReader_1_0(), FederationSubsystemWriter.INSTANCE), PICKETLINK_FEDERATION_1_1(1, 1, 0, new FederationSubsystemReader_2_0(), FederationSubsystemWriter.INSTANCE), PICKETLINK_FEDERATION_2_0(2, 0, 0, new FederationSubsystemReader_2_0(), FederationSubsystemWriter.INSTANCE); public static final Namespace CURRENT = PICKETLINK_FEDERATION_2_0; public static final String BASE_URN = "urn:jboss:domain:picketlink-federation:"; private static final Map<String, Namespace> namespaces; static { final Map<String, Namespace> map = new HashMap<String, Namespace>(); for (Namespace namespace : values()) { final String name = namespace.getUri(); if (name != null) { map.put(name, namespace); } } namespaces = map; } private final int major; private final int minor; private final int patch; private final XMLElementReader<List<ModelNode>> reader; private final XMLElementWriter<SubsystemMarshallingContext> writer; Namespace(int major, int minor, int patch, XMLElementReader<List<ModelNode>> reader, XMLElementWriter<SubsystemMarshallingContext> writer) { this.major = major; this.minor = minor; this.patch = patch; this.reader = reader; this.writer = writer; } /** * Converts the specified uri to a {@link org.wildfly.extension.picketlink.federation.Namespace}. * * @param uri a namespace uri * * @return the matching namespace enum. */ public static Namespace forUri(String uri) { return namespaces.get(uri) == null ? null : namespaces.get(uri); } /** * @return the major */ public int getMajor() { return this.major; } /** * @return the minor */ public int getMinor() { return this.minor; } /** * * @return the patch */ public int getPatch() { return patch; } /** * Get the URI of this namespace. * * @return the URI */ public String getUri() { String patchVersion = ""; if (this.patch > 0) { patchVersion = "." + this.patch; } return BASE_URN + this.major + "." + this.minor + patchVersion; } /** * Returns a xml reader for a specific namespace version. * * @return */ public XMLElementReader<List<ModelNode>> getXMLReader() { return this.reader; } /** * Returns a xml writer for a specific namespace version. * * @return */ public XMLElementWriter<SubsystemMarshallingContext> getXMLWriter() { return this.writer; } public ModelVersion getModelVersion() { if (this.patch > 0) { return ModelVersion.create(getMajor(), getMinor(), getPatch()); } return ModelVersion.create(getMajor(), getMinor()); } }