Package org.jboss.identity.federation.core.wstrust.plugins.saml

Source Code of org.jboss.identity.federation.core.wstrust.plugins.saml.SAMLUtil

/*
* JBoss, Home of Professional Open Source.
* Copyright 2009, Red Hat Middleware LLC, 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.jboss.identity.federation.core.wstrust.plugins.saml;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.transform.dom.DOMResult;

import org.jboss.identity.federation.core.saml.v2.util.DocumentUtil;
import org.jboss.identity.federation.core.util.JAXBUtil;
import org.jboss.identity.federation.saml.v2.assertion.AssertionType;
import org.jboss.identity.federation.saml.v2.assertion.ObjectFactory;
import org.w3c.dom.DOMConfiguration;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

/**
* <p>
* This class contains utility methods and constants that are used by the SAML token providers.
* </p>
*
* @author <a href="mailto:sguilhen@redhat.com">Stefan Guilhen</a>
*/
public class SAMLUtil
{

   public static final String SAML2_BEARER_URI = "urn:oasis:names:tc:SAML:2.0:cm:bearer";

   public static final String SAML2_TOKEN_TYPE = "http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV2.0";

   public static final String SAML2_VALUE_TYPE = "http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLID";

   /**
    * <p>
    * Utility method that marshals the specified {@code AssertionType} object into an {@code Element} instance.
    * </p>
    *
    * @param assertion
    *           an {@code AssertionType} object representing the SAML assertion to be marshaled.
    * @return a reference to the {@code Element} that contains the marshaled SAML assertion.
    * @throws Exception
    *            if an error occurs while marshaling the assertion.
    */
   public static Element toElement(AssertionType assertion) throws Exception
   {
      Document document = DocumentUtil.createDocument();
      DOMResult result = new DOMResult(document);
      Marshaller marshaller = JAXBUtil.getMarshaller("org.jboss.identity.federation.saml.v2.assertion");
      marshaller.marshal(new ObjectFactory().createAssertion(assertion), result);

      // normalize the document to remove unused namespaces.
      DOMConfiguration docConfig = document.getDomConfig();
      docConfig.setParameter("namespaces", Boolean.TRUE);
      docConfig.setParameter("namespace-declarations", Boolean.FALSE);
      document.normalizeDocument();
     
      return document.getDocumentElement();
   }

   /**
    * <p>
    * Utility method that unmarshals the specified {@code Element} into an {@code AssertionType} instance.
    * </p>
    *
    * @param assertionElement
    *           the {@code Element} that contains the marshaled SAMLV2.0 assertion.
    * @return a reference to the unmarshaled {@code AssertionType} instance.
    * @throws JAXBException if an error occurs while unmarshalling the document.
    */
   public static AssertionType fromElement(Element assertionElement) throws JAXBException
   {
      Unmarshaller unmarshaller = JAXBUtil.getUnmarshaller("org.jboss.identity.federation.saml.v2.assertion");
      Object object = unmarshaller.unmarshal(assertionElement);
      if (object instanceof AssertionType)
         return (AssertionType) object;
      else if (object instanceof JAXBElement)
      {
         JAXBElement<?> element = (JAXBElement<?>) object;
         if (element.getDeclaredType().equals(AssertionType.class))
            return (AssertionType) element.getValue();
      }
      throw new IllegalArgumentException("Supplied document does not contain a SAMLV2.0 Assertion");
   }
}
TOP

Related Classes of org.jboss.identity.federation.core.wstrust.plugins.saml.SAMLUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.