Package net.sf.wsdl2jibx.wsdl

Examples of net.sf.wsdl2jibx.wsdl.WsdlUnmarshaller


      throw new Wsdl2JibxException("Error during generation process", ex);
    }
  }
 
  protected void processExtractionSchemas() throws IOException, WSDLException {
    WsdlUnmarshaller wsdlUnmarshaller = new WsdlUnmarshaller(options.getSchemaFiles());
    wsdlUnmarshaller.unmarshall();
    complexTypeList = wsdlUnmarshaller.getComplexTypeList();
    elementTypeRefMap = wsdlUnmarshaller.getElementTypeRefMap();
    attributeGroups = wsdlUnmarshaller.getAttributeGroupMap();
    simpleTypeMap = wsdlUnmarshaller.getSimpleTypeMap();
    if(log.isDebugEnabled()) {
      log.debug(complexTypeList.size()+" complextype found");
      log.debug(simpleTypeMap.size()+" simpletype found");
      log.debug(attributeGroups.size()+" attribute group found");
    }
View Full Code Here

TOP

Related Classes of net.sf.wsdl2jibx.wsdl.WsdlUnmarshaller

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.