Package org.jboss.ws.metadata.wsdl

Source Code of org.jboss.ws.metadata.wsdl.XSModelTypes

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt 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.ws.metadata.wsdl;

import javax.xml.namespace.QName;

import org.apache.xerces.xs.XSElementDeclaration;
import org.apache.xerces.xs.XSTypeDefinition;
import org.jboss.logging.Logger;
import org.jboss.ws.WSException;
import org.jboss.ws.metadata.wsdl.xmlschema.JBossXSModel;

/**
* A JBossXSModel based type definition.
*
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
* @version $Revision: 1757 $
*/
public class XSModelTypes extends WSDLTypes
{
   private static final Logger log = Logger.getLogger(XSModelTypes.class);

   private JBossXSModel schemaModel;

   public XSModelTypes()
   {
      this.schemaModel = new JBossXSModel();
   }

   /**
    * Add a schema model for a given namespaceURI
    * @param nsURI the namespaceURI under which the model has been generated
    * @param schema the Schema Model that needs to be added to existing schema
    *               model in WSDLTypes
    * <dt>Warning:</dd>
    * <p>Passing a null nsURI will replace the internal schema model
    * held by WSDLTypes by the model passed as an argument.</p>
    */
   public void addSchemaModel(String nsURI, JBossXSModel schema)
   {
      if(nsURI == null)
      {
         log.trace("nsURI passed to addSchemaModel is null. Replacing Schema Model");
         schemaModel = schema;
      }
      else
          schemaModel.merge(schema);
   }

   /**
    * Return the global Schema Model
    * @return
    */
   public JBossXSModel getSchemaModel()
   {
      return schemaModel;
   }

   /** Get the xmlType from a given element xmlName
    */
   public QName getXMLType(QName xmlName)
   {
      QName xmlType = null;
      String nsURI = xmlName.getNamespaceURI();
      String localPart = xmlName.getLocalPart();
      XSElementDeclaration xsel = schemaModel.getElementDeclaration(localPart, nsURI);
      if (xsel != null)
      {
         XSTypeDefinition xstype = xsel.getTypeDefinition();
         if (xstype == null)
            throw new WSException("Cannot obtain XSTypeDefinition for: " + xmlName);

         if (xstype.getAnonymous() == false)
         {
            xmlType = new QName(xstype.getNamespace(), xstype.getName());
         }
         else
         {
            xmlType = new QName(xstype.getNamespace(), ">" + localPart);
         }
      }
      return xmlType;
   }

   public String toString()
   {
      StringBuilder buffer = new StringBuilder("WSDLTypes:\n");
      buffer.append(schemaModel != null ? schemaModel.serialize() : "<schema/>");
      return buffer.toString();
   }
}
TOP

Related Classes of org.jboss.ws.metadata.wsdl.XSModelTypes

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.