KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > wsdl > impl > DefinitionImpl


1 package org.jbpm.bpel.wsdl.impl;
2
3 import javax.wsdl.*;
4
5 /**
6  * @author Alejandro Guízar
7  * @version $Revision: 1.2 $ $Date: 2005/04/15 16:34:42 $
8  */

9 public class DefinitionImpl extends com.ibm.wsdl.DefinitionImpl {
10
11   private static final long serialVersionUID = 1L;
12   
13   public Message createMessage() {
14     return new MessageImpl();
15   }
16   
17   public Part createPart() {
18     return new PartImpl();
19   }
20   
21   public PortType createPortType() {
22     return new PortTypeImpl();
23   }
24   
25   public Operation createOperation() {
26     return new OperationImpl();
27   }
28   
29   public Input createInput() {
30     return new InputImpl();
31   }
32   
33   public Output createOutput() {
34     return new OutputImpl();
35   }
36   
37   public Fault createFault() {
38     return new FaultImpl();
39   }
40 }
41
Popular Tags