Package org.jboss.ws.tools.wsdl

Source Code of org.jboss.ws.tools.wsdl.JBossWSDLFactoryImpl

/*    */ package org.jboss.ws.tools.wsdl;
/*    */
/*    */ import com.ibm.wsdl.DefinitionImpl;
/*    */ import com.ibm.wsdl.extensions.PopulatedExtensionRegistry;
/*    */ import com.ibm.wsdl.xml.WSDLWriterImpl;
/*    */ import javax.wsdl.Definition;
/*    */ import javax.wsdl.extensions.ExtensionRegistry;
/*    */ import javax.wsdl.factory.WSDLFactory;
/*    */ import javax.wsdl.xml.WSDLReader;
/*    */ import javax.wsdl.xml.WSDLWriter;
/*    */
/*    */ public class JBossWSDLFactoryImpl extends WSDLFactory
/*    */ {
/*    */   public Definition newDefinition()
/*    */   {
/* 52 */     Definition def = new DefinitionImpl();
/* 53 */     ExtensionRegistry extReg = newPopulatedExtensionRegistry();
/*    */
/* 55 */     def.setExtensionRegistry(extReg);
/*    */
/* 57 */     return def;
/*    */   }
/*    */
/*    */   public WSDLReader newWSDLReader()
/*    */   {
/* 65 */     return new JBossWSDLReaderImpl();
/*    */   }
/*    */
/*    */   public WSDLWriter newWSDLWriter()
/*    */   {
/* 70 */     return new WSDLWriterImpl();
/*    */   }
/*    */
/*    */   public ExtensionRegistry newPopulatedExtensionRegistry()
/*    */   {
/* 81 */     return new PopulatedExtensionRegistry();
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.ws.tools.wsdl.JBossWSDLFactoryImpl
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.ws.tools.wsdl.JBossWSDLFactoryImpl

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.