Package org.gatein.pc.portlet.impl.deployment.xml

Examples of org.gatein.pc.portlet.impl.deployment.xml.XSD


      }

      // Perform schema validation if required
      if (schemaValidation)
      {
         XSD xsd = version == 1 ? XSD.PORTLET_1_0 : XSD.PORTLET_2_0;
         try
         {
            xsd.validate(new StreamSource(new ByteArrayInputStream(bytes)));
         }
         catch (Exception e)
         {
            throw new DeploymentException("The portlet.xml file is not valid XML", e);
         }
View Full Code Here


      }

      // Perform schema validation if required
      if (schemaValidation)
      {
         XSD xsd = version == 1 ? XSD.PORTLET_1_0 : XSD.PORTLET_2_0;
         xsd.validate(new StreamSource(new ByteArrayInputStream(bytes)));
      }

      //
      assert Element.portlet_app == nav.getName();
View Full Code Here

TOP

Related Classes of org.gatein.pc.portlet.impl.deployment.xml.XSD

Copyright © 2018 www.massapicom. 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.